We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a045e8 commit 4381ec9Copy full SHA for 4381ec9
styleguide_example/common/models.py
@@ -1,5 +1,5 @@
1
from django.db import models
2
-from django.db.models import F, Q
+from django.db.models.query import F, Q
3
from django.utils import timezone
4
5
styleguide_example/testing_examples/models.py
@@ -1,7 +1,7 @@
from uuid import uuid4
6
7
class School(models.Model):
styleguide_example/testing_examples/selectors/schools.py
@@ -2,7 +2,7 @@
from typing import Optional
from django.core.exceptions import ValidationError
-from django.db.models import Q, QuerySet
+from django.db.models.query import Q, QuerySet
from styleguide_example.testing_examples.models import School, SchoolCourse
8
0 commit comments