Skip to content

Commit

Permalink
fixed lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
JazzarKarim committed Mar 21, 2024
1 parent 04f18cf commit 880d1ec
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion legal-api/src/legal_api/models/legal_entity.py
Original file line number Diff line number Diff line change
Expand Up @@ -641,7 +641,9 @@ def get_amalgamated_into(self) -> dict:
and (state_filing := Filing.find_by_id(self.state_filing_id))
and state_filing.is_amalgamation_application
):
return Amalgamation.get_amalgamation_revision_json(state_filing.transaction_id, state_filing.legal_entity_id)
return Amalgamation.get_amalgamation_revision_json(
state_filing.transaction_id, state_filing.legal_entity_id
)

return None

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@
from_queue_message,
to_queue_message,
)
from werkzeug.local import LocalProxy
from werkzeug.exceptions import UnsupportedMediaType
from werkzeug.local import LocalProxy


class GcpQueue:
Expand Down

0 comments on commit 880d1ec

Please sign in to comment.