Skip to content

Commit

Permalink
fix: linting
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgenengelsen committed Aug 23, 2024
1 parent e485bff commit e647868
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{".":"1.5.0"}
{ ".": "1.5.0" }
2 changes: 1 addition & 1 deletion api/src/common/exception_handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def add_exception_handlers(app: FastAPI) -> None:

# Override built-in default handler
app.add_exception_handler(RequestValidationError, validation_exception_handler) # type: ignore
app.add_exception_handler(HTTPStatusError, http_exception_handler) # type: ignore
app.add_exception_handler(HTTPStatusError, http_exception_handler)

# Fallback exception handler for all unexpected exceptions
app.add_exception_handler(Exception, fall_back_exception_handler)
Expand Down

0 comments on commit e647868

Please sign in to comment.