Skip to content

Commit

Permalink
Fix whitepace around brackets
Browse files Browse the repository at this point in the history
  • Loading branch information
jrha committed Jul 16, 2024
1 parent 9e6fc16 commit c05d0c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtests.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def readlinks(self, dir):
"""return a list of (linkname, linktarget) tuples for all files in a directory"""
pj = os.path.join
readlink = os.readlink
result = [ (l, readlink(pj(dir, l))) for l in os.listdir(dir) ]
result = [(l, readlink(pj(dir, l))) for l in os.listdir(dir)]
result.sort()
return result

Expand Down

0 comments on commit c05d0c3

Please sign in to comment.