Skip to content

Commit bff4c06

Browse files
committed
pylint: suppress overridden fs.walk() args warning
1 parent 2cae0e6 commit bff4c06

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/dvc_objects/fs/local.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,9 @@ def isfile(self, path) -> bool:
5252
def isdir(self, path) -> bool:
5353
return os.path.isdir(path)
5454

55-
def walk(self, path, maxdepth=None, topdown=True, detail=False, **kwargs):
55+
def walk( # pylint: disable=arguments-renamed
56+
self, path, maxdepth=None, topdown=True, detail=False, **kwargs
57+
):
5658
"""Directory fs generator.
5759
5860
See `os.walk` for the docs. Differences:

0 commit comments

Comments
 (0)