From 2bb5d7d350cdf8d8bfef6c6f5b18ab3c1c67e3fc Mon Sep 17 00:00:00 2001 From: Luke Tainton Date: Fri, 30 Aug 2024 19:35:26 +0100 Subject: [PATCH] chore(lint): fix C0413 --- tests/test_config.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/test_config.py b/tests/test_config.py index ce280c8..070f734 100644 --- a/tests/test_config.py +++ b/tests/test_config.py @@ -1,5 +1,7 @@ #!/usr/bin/env python3 +# ruff: noqa: E402 pylint: disable=wrong-import-position + """Provides test cases for app/utils/config.py.""" import os @@ -23,7 +25,7 @@ for var, value in vars.items(): os.environ[var] = value # needs to be imported AFTER environment variables are set -from app.utils.config import config # pragma: no cover # noqa: E402 +from app.utils.config import config # pragma: no cover def test_config() -> None: