Skip to content

Commit 4381ec9

Browse files
DTodorov985RadoRado
authored andcommitted
fix
1 parent 0a045e8 commit 4381ec9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

styleguide_example/common/models.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from django.db import models
2-
from django.db.models import F, Q
2+
from django.db.models.query import F, Q
33
from django.utils import timezone
44

55

styleguide_example/testing_examples/models.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from uuid import uuid4
22

33
from django.db import models
4-
from django.db.models import F, Q
4+
from django.db.models.query import F, Q
55

66

77
class School(models.Model):

styleguide_example/testing_examples/selectors/schools.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from typing import Optional
33

44
from django.core.exceptions import ValidationError
5-
from django.db.models import Q, QuerySet
5+
from django.db.models.query import Q, QuerySet
66

77
from styleguide_example.testing_examples.models import School, SchoolCourse
88

0 commit comments

Comments
 (0)