From 46a307aaeb67cc82767e2b51533ba16beef0d3ac Mon Sep 17 00:00:00 2001 From: Rafael Guterres Jeffman <rjeffman@redhat.com> Date: Fri, 8 Sep 2023 11:37:29 -0300 Subject: [PATCH] pylint: Fix unused-argument --- tests/pytests/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/pytests/conftest.py b/tests/pytests/conftest.py index e42d5f4c..40cdbc67 100644 --- a/tests/pytests/conftest.py +++ b/tests/pytests/conftest.py @@ -31,7 +31,7 @@ def set_env_if_not_set(envvar, value): os.environ[envvar] = value -def pytest_configure(config): +def pytest_configure(config): # pylint: disable=unused-argument test_dir = os.getenv("TWD") if not test_dir: return -- GitLab