From 1779de6bfe40f1071593f14ad7e2f0b2b5f4da2b Mon Sep 17 00:00:00 2001 From: Karel van Klink <karel.vanklink@geant.org> Date: Tue, 30 May 2023 11:35:14 +0200 Subject: [PATCH] fix tox pipeline --- gso/main.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/gso/main.py b/gso/main.py index 6d9a9378..e95976e5 100644 --- a/gso/main.py +++ b/gso/main.py @@ -4,8 +4,10 @@ The main module, from where GSO is run. from orchestrator import OrchestratorCore from orchestrator.cli.main import app as core_cli from orchestrator.settings import AppSettings -import gso.products # pylint: disable=unused-import -import gso.workflows # pylint: disable=unused-import +# pylint: disable=unused-import +import gso.products # noqa: F401 +# pylint: disable=unused-import +import gso.workflows # noqa: F401 app = OrchestratorCore(base_settings=AppSettings()) -- GitLab