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/conftest.py | |
parent | 11d1509456c81bd0128afb0c4eedbb26bd8751c4 (diff) | |
download | hircine-2eff6f0bd75c9959b7b899d169164343cd0377c9.tar.gz |
backend/lint: Fix import formatting
Diffstat (limited to 'tests/conftest.py')
-rw-r--r-- | tests/conftest.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/conftest.py b/tests/conftest.py index a36be2d..d831827 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -4,14 +4,15 @@ from datetime import date, timedelta from datetime import datetime as dt from datetime import timezone as tz +import pytest +from sqlalchemy.ext.asyncio import AsyncSession + import hircine import hircine.db as database import hircine.db.models as models import hircine.plugins -import pytest from hircine.app import schema from hircine.enums import Category, Censorship, Direction, Language, Layout, Rating -from sqlalchemy.ext.asyncio import AsyncSession @pytest.fixture(scope="session") |