Skip to content
Snippets Groups Projects
Commit 3ef4e3b0 authored by Neda Moeini's avatar Neda Moeini
Browse files

Make linter happy.

parent 4e2ff6a3
No related branches found
No related tags found
No related merge requests found
This commit is part of merge request !237. Comments created here will be created in the context of that merge request.
"""The main entrypoint for :term:`GSO`, and the different ways in which it can be run.""" """The main entrypoint for :term:`GSO`, and the different ways in which it can be run."""
import sentry_sdk import sentry_sdk
import typer import typer
from orchestrator import OrchestratorCore, app_settings from orchestrator import OrchestratorCore, app_settings
...@@ -41,7 +42,7 @@ def init_worker_app() -> OrchestratorCore: ...@@ -41,7 +42,7 @@ def init_worker_app() -> OrchestratorCore:
def init_cli_app() -> typer.Typer: def init_cli_app() -> typer.Typer:
"""Initialise :term:`GSO` as a CLI application.""" """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(imports.app, name="import-cli")
cli_app.add_typer(netbox.app, name="netbox-cli") cli_app.add_typer(netbox.app, name="netbox-cli")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment