Skip to content

Commit a0a78f8

Browse files
devGregAclaude
andcommitted
style: sort apps.py ready() imports for ruff
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 7c53ced commit a0a78f8

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

dojo/apps.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,11 +76,10 @@ def ready(self):
7676
# query_registrations.py is no longer imported by the package
7777
# __init__ (to avoid circular import edge cases during early model
7878
# loading) — we do it here once all models are ready.
79-
import dojo.authorization.query_registrations # noqa: PLC0415, F401
80-
8179
# Load any signals here that will be ready for runtime
8280
# Importing the signals file is good enough if using the receiver decorator
8381
import dojo.announcement.signals # noqa: PLC0415, F401 raised: AppRegistryNotReady
82+
import dojo.authorization.query_registrations # noqa: PLC0415, F401
8483
import dojo.benchmark.signals # noqa: PLC0415, F401 raised: AppRegistryNotReady
8584

8685
# TODO: Delete this after the move to Locations

0 commit comments

Comments
 (0)