Closes #17725: Clean up import statements (#17728)

* #17725: Resolve all F401 errors

* Tweak noqa designation
This commit is contained in:
Jeremy Stretch
2024-10-10 14:52:47 -04:00
committed by GitHub
parent e3c3ca191c
commit e59f776e02
54 changed files with 29 additions and 90 deletions

View File

@@ -7,7 +7,7 @@ class CircuitsConfig(AppConfig):
def ready(self):
from netbox.models.features import register_models
from . import signals, search
from . import signals, search # noqa: F401
# Register models
register_models(*self.get_models())