Skip to content

Commit

Permalink
Ignore unused arguments in gen_python_files test
Browse files Browse the repository at this point in the history
  • Loading branch information
akaihola committed Feb 26, 2024
1 parent 277b6b3 commit 6954d3c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/darker/tests/test_black_diff.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,7 @@ def make_mock_gen_python_files_black_21_7b1_dev8():
"""
calls = Mock()

# pylint: disable=unused-argument
def gen_python_files(
paths: Iterable[Path],
root: Path,
Expand Down Expand Up @@ -243,6 +244,7 @@ def make_mock_gen_python_files_black_21_7b1_dev9():
"""
calls = Mock()

# pylint: disable=unused-argument
def gen_python_files(
paths: Iterable[Path],
root: Path,
Expand Down Expand Up @@ -277,6 +279,7 @@ def make_mock_gen_python_files_black_22_10_1_dev19():
"""
calls = Mock()

# pylint: disable=unused-argument
def gen_python_files(
paths: Iterable[Path],
root: Path,
Expand Down

0 comments on commit 6954d3c

Please sign in to comment.