Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
pjbull committed Oct 8, 2023
1 parent d8fadc3 commit a78438b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions cloudpathlib/cloudpath.py
Original file line number Diff line number Diff line change
Expand Up @@ -494,8 +494,8 @@ def iterdir(self) -> Generator[Self, None, None]:

@staticmethod
def _walk_results_from_tree(root, tree, top_down=True):
""" Utility to yield tuples in the form expected by `.walk` from the file
tree constructed by `_build_substree`.
"""Utility to yield tuples in the form expected by `.walk` from the file
tree constructed by `_build_substree`.
"""
dirs = []
files = []
Expand Down
2 changes: 1 addition & 1 deletion tests/performance/perf_file_listing.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ def walk(folder):
for _, _, files in folder.walk():
n_items += len(files)

return {"n_items": n_items}
return {"n_items": n_items}

0 comments on commit a78438b

Please sign in to comment.