From dbcb638f089159b336e4b652336600c0191ac0ce Mon Sep 17 00:00:00 2001 From: Rafael Guterres Jeffman 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 e42d5f4ce8..40cdbc67c5 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