Skip to content

Commit

Permalink
Ignore a print statement in error handling
Browse files Browse the repository at this point in the history
  • Loading branch information
jacksonj04 committed Nov 9, 2023
1 parent 08ef5f8 commit 0f572a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/openapi_server/apis/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def error_handling():
yield

except Exception as e:
print(f"EXCEPTION {e}")
print(f"EXCEPTION {e}") # noqa: T201
return error_response(e)


Expand Down

0 comments on commit 0f572a3

Please sign in to comment.