Skip to content

Commit

Permalink
Missed a comment
Browse files Browse the repository at this point in the history
  • Loading branch information
gitjannes committed Dec 17, 2024
1 parent 1e341f5 commit 1a0fa27
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion protzilla/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def get_available_runinfo() -> tuple[list[dict[str, str | list[str]]], list[dict
runs = []
runs_favourited = []
all_tags = set()
for directory in paths.RUNS_PATH.iterdir():
for directory in paths.RUNS_PATH.iterdir(): #not sorted the same for different os?
if directory.name.startswith("."):
continue
name = directory.name
Expand Down
2 changes: 1 addition & 1 deletion protzilla/run_v2.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def get_available_run_names() -> list[str]:
return []
return [
directory.name
for directory in paths.RUNS_PATH.iterdir() #not sorted the same for different os?
for directory in paths.RUNS_PATH.iterdir()
if not directory.name.startswith(".")
]

Expand Down

0 comments on commit 1a0fa27

Please sign in to comment.