Skip to content

Commit

Permalink
Fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
greole committed Feb 12, 2024
1 parent 02572e1 commit 7399066
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/obr/core/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -419,6 +419,6 @@ def is_time(s: str) -> bool:
return False

_, fs, _ = next(os.walk(self.path))
ret = [self.path / f for f in fs if is_time(f)]
ret = [path / f for f in fs if is_time(f)]
ret.sort()
return ret

0 comments on commit 7399066

Please sign in to comment.