Skip to content

Commit

Permalink
linter
Browse files Browse the repository at this point in the history
  • Loading branch information
shcheklein authored Jul 3, 2024
1 parent 7db7c46 commit fe431fa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/benchmarks/test_fs.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ def paths(original, links):

def test_link(benchmark, paths, links, link):
def setup():
for link in links.iterdir():
if link.is_file():
link.unlink()
for lnk in links.iterdir():
if lnk.is_file():
lnk.unlink()

def _link(paths):
for src, path in paths:
Expand Down

0 comments on commit fe431fa

Please sign in to comment.