Skip to content

Commit cc06efe

Browse files
committed
fix: one line import
1 parent 2337178 commit cc06efe

File tree

2 files changed

+2
-13
lines changed

2 files changed

+2
-13
lines changed

tests/fixtures/app.py

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,7 @@
3939
from fastapi_jsonapi.data_typing import TypeModel
4040
from fastapi_jsonapi.views.view_base import ViewBase
4141

42-
from .models import (
43-
AgeRating,
44-
Alpha,
45-
Beta,
46-
CustomUUIDItem,
47-
Delta,
48-
Gamma,
49-
Task,
50-
)
42+
from .models import AgeRating, Alpha, Beta, CustomUUIDItem, Delta, Gamma, Task
5143
from .schemas import (
5244
AgeRatingCreateSchema,
5345
AgeRatingSchema,

tests/fixtures/entities.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,7 @@
1717
Workplace,
1818
)
1919
from tests.common import is_postgres_tests
20-
from tests.fixtures.models import (
21-
AgeRating,
22-
Task,
23-
)
20+
from tests.fixtures.models import AgeRating, Task
2421
from tests.misc.utils import fake
2522

2623

0 commit comments

Comments
 (0)