diff options
author | Wolfgang Müller | 2024-11-14 15:47:52 +0100 |
---|---|---|
committer | Wolfgang Müller | 2024-11-14 16:28:09 +0100 |
commit | 2eff6f0bd75c9959b7b899d169164343cd0377c9 (patch) | |
tree | 51bb0e3148e39cde126b088cd646d2212aa3f320 /tests/api/test_db.py | |
parent | 11d1509456c81bd0128afb0c4eedbb26bd8751c4 (diff) | |
download | hircine-2eff6f0bd75c9959b7b899d169164343cd0377c9.tar.gz |
backend/lint: Fix import formatting
Diffstat (limited to '')
-rw-r--r-- | tests/api/test_db.py | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/tests/api/test_db.py b/tests/api/test_db.py index f53b90f..1405c23 100644 --- a/tests/api/test_db.py +++ b/tests/api/test_db.py @@ -1,10 +1,16 @@ from datetime import datetime, timedelta, timezone +import pytest +from conftest import DB +from sqlalchemy.exc import StatementError +from sqlalchemy.orm import ( + Mapped, + mapped_column, +) + import hircine.db as database import hircine.db.models as models import hircine.db.ops as ops -import pytest -from conftest import DB from hircine.db.models import ( Artist, Base, @@ -16,11 +22,6 @@ from hircine.db.models import ( Tag, TagNamespaces, ) -from sqlalchemy.exc import StatementError -from sqlalchemy.orm import ( - Mapped, - mapped_column, -) class Date(MixinID, Base): |