Skip to content

Commit

Permalink
pylint: Fix unused-argument
Browse files Browse the repository at this point in the history
  • Loading branch information
rjeffman committed Sep 8, 2023
1 parent d381a78 commit dbcb638
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/pytests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit dbcb638

Please sign in to comment.