Skip to content

Commit

Permalink
Fix isort imports
Browse files Browse the repository at this point in the history
  • Loading branch information
katybaulch committed Mar 11, 2024
1 parent 2f8a990 commit f9aaa95
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/repository/document.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@
)
from db_client.models.law_policy import FamilyDocument
from db_client.models.law_policy.family import DocumentStatus, Slug
from sqlalchemy import Column, and_, func
from sqlalchemy import Column, and_
from sqlalchemy import delete as db_delete
from sqlalchemy import func
from sqlalchemy import insert as db_insert
from sqlalchemy import update as db_update
from sqlalchemy.exc import NoResultFound, OperationalError
Expand Down

0 comments on commit f9aaa95

Please sign in to comment.