From 8d297c96cf95eb0ce6bfb9a3cd4bdb9faa5a485f Mon Sep 17 00:00:00 2001 From: TheMatt2 <22862051+TheMatt2@users.noreply.github.com> Date: Mon, 17 Apr 2023 00:08:04 -0400 Subject: [PATCH] Fix flake8 formatting --- tests/test_filelock.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_filelock.py b/tests/test_filelock.py index bc53976..3896dc8 100644 --- a/tests/test_filelock.py +++ b/tests/test_filelock.py @@ -135,7 +135,7 @@ def test_ro_file(lock_type: type[BaseFileLock], tmp_file_ro: Path) -> None: @pytest.mark.parametrize("lock_type", [FileLock, SoftFileLock]) @pytest.mark.parametrize( - "expected_error,match,bad_lock_file", + ("expected_error", "match", "bad_lock_file"), bad_lock_file_errors, ids=[e[0].__name__ for e in bad_lock_file_errors], )