Skip to content

Commit

Permalink
Ruff check fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Moosems committed Jul 29, 2024
1 parent 880d56f commit 66461cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/simple_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def main():
sleep(1)

output: Response | None = context.get_response("test")
if output is not None and output["result"] == True: # type: ignore
if output is not None and output["result"]: # type: ignore
print("Yippee! It worked!")
else:
print("Aww, maybe your compute is just a little slow?")
Expand Down

0 comments on commit 66461cf

Please sign in to comment.