Skip to content

Commit

Permalink
pylint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
marzukr committed Dec 16, 2024
1 parent 97e86cf commit 7478ef4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/src/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def handle_exceptions(e: Exception):
log.exception(e)
return result
except Exception as new_exc: # pylint: disable=broad-except
log.exception('Exception while handling exception: %s', e)
log.exception('Exception while handling exception: %s', new_exc)
return ApiError().flask_tuple()

@app.before_request
Expand Down

0 comments on commit 7478ef4

Please sign in to comment.