Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
yocalebo committed May 9, 2024
1 parent 6ce6eb1 commit c703132
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion catalog_reader/catalog.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import concurrent.futures
import functools
import os
import pathlib
import typing

from .app import get_app_details
Expand All @@ -21,7 +22,7 @@ def retrieve_train_names(location: str, all_trains=True, trains_filter=None) ->
for train in pathlib.Path(location).iterdir():
if any((
not (all_trains or train.name in trains_filter),
not is_train_valid(train.name, train.as_posix()):
not is_train_valid(train.name, train.as_posix()),
)):
continue
else:
Expand Down

0 comments on commit c703132

Please sign in to comment.