Skip to content

Commit 7e4fd52

Browse files
github-actions[bot]claudeJSv4
committed
Fix isort import ordering in SoftDeleteQuerySet.visible_to_user method
Reordered imports alphabetically within the visible_to_user method: - django.apps comes before django.contrib.auth.models - django.contrib.auth.models comes before django.db.models 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]> Co-authored-by: JSIV <[email protected]>
1 parent 9b78ea9 commit 7e4fd52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

opencontractserver/conversations/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ def visible_to_user(self, user=None):
5353
Returns queryset filtered to objects visible to the user.
5454
Maintains soft-delete filtering from the base queryset.
5555
"""
56-
from django.contrib.auth.models import AnonymousUser
5756
from django.apps import apps
57+
from django.contrib.auth.models import AnonymousUser
5858
from django.db.models import Q
5959

6060
# Handle None user as anonymous

0 commit comments

Comments
 (0)