Skip to content

Commit 94c0d7a

Browse files
committed
Linting.
1 parent b1fd940 commit 94c0d7a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

domdf_python_tools/paths.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1085,14 +1085,14 @@ def __init__(
10851085
):
10861086
super().__init__(a, b, ignore=ignore, hide=hide)
10871087

1088-
def phase3(self) -> None:
1088+
def phase3(self) -> None: # noqa: D102
10891089
# Find out differences between common files.
10901090
# Ensure we are using content comparison with shallow=False.
10911091

10921092
fcomp = filecmp.cmpfiles(self.left, self.right, self.common_files, shallow=False)
10931093
self.same_files, self.diff_files, self.funny_files = fcomp
10941094

1095-
def phase4(self) -> None:
1095+
def phase4(self) -> None: # noqa: D102
10961096
# Find out differences between common subdirectories
10971097

10981098
# From https://github.com/python/cpython/pull/23424

0 commit comments

Comments
 (0)