Skip to content

Commit

Permalink
Apply ruff/flake8-pytest-style rule PT006
Browse files Browse the repository at this point in the history
PT006 Wrong type passed to first argument of `pytest.mark.parametrize`; expected `tuple`
  • Loading branch information
DimitriPapadopoulos committed Jan 14, 2025
1 parent b782f25 commit 913871e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion codespell_lib/tests/test_dictionary.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
for d in _builtin_dictionaries
]
fname_params = pytest.mark.parametrize(
"fname, in_aspell, in_dictionary", _fnames_in_aspell
("fname", "in_aspell", "in_dictionary"), _fnames_in_aspell
)


Expand Down

0 comments on commit 913871e

Please sign in to comment.