Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DTodorov985 authored and RadoRado committed May 12, 2024
1 parent 0a045e8 commit 4381ec9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion styleguide_example/common/models.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from django.db import models
from django.db.models import F, Q
from django.db.models.query import F, Q
from django.utils import timezone


Expand Down
2 changes: 1 addition & 1 deletion styleguide_example/testing_examples/models.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from uuid import uuid4

from django.db import models
from django.db.models import F, Q
from django.db.models.query import F, Q


class School(models.Model):
Expand Down
2 changes: 1 addition & 1 deletion styleguide_example/testing_examples/selectors/schools.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 4381ec9

Please sign in to comment.