Skip to content

Commit

Permalink
fix(debug): remove unnecessary whitespace in zero_division_error handler
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexandr Panteleev committed Jan 23, 2025
1 parent 5f86bfe commit a355607
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test_apps/debugging/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
@get("/")
async def zero_division_error() -> Dict[str, str]:
"""Handler function that returns a greeting dictionary."""
1 / 0 # pyright: ignore # noqa: B018
1 / 0 # pyright: ignore # noqa: B018
return {"message": "ZeroDevisionError didn't occur."}


Expand Down

0 comments on commit a355607

Please sign in to comment.