From 3cb335646113f496a9a3eab2ed9b9e6cfd28ff6a Mon Sep 17 00:00:00 2001
From: Neda Moeini <neda.moeini@geant.org>
Date: Mon, 29 Jul 2024 10:41:44 +0200
Subject: [PATCH] Make linter happy.

---
 gso/__init__.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gso/__init__.py b/gso/__init__.py
index c4f5f871..bb036cdc 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")
-- 
GitLab