diff --git a/gso/__init__.py b/gso/__init__.py
index c4f5f87144ff1a35ec2966bd85e63b7fa5501cb2..bb036cdc5882276b2239d1c42ac8f791a27b1764 100644
--- a/gso/__init__.py
+++ b/gso/__init__.py
@@ -1,4 +1,5 @@
 """The main entrypoint for :term:`GSO`, and the different ways in which it can be run."""
+
 import sentry_sdk
 import typer
 from orchestrator import OrchestratorCore, app_settings
@@ -41,7 +42,7 @@ def init_worker_app() -> OrchestratorCore:
 
 def init_cli_app() -> typer.Typer:
     """Initialise :term:`GSO` as a CLI application."""
-    from gso.cli import imports, netbox
+    from gso.cli import imports, netbox  # noqa: PLC0415
 
     cli_app.add_typer(imports.app, name="import-cli")
     cli_app.add_typer(netbox.app, name="netbox-cli")