Skip to content

Commit

Permalink
Allow any iterable in DataLoader source_ids argument.
Browse files Browse the repository at this point in the history
  • Loading branch information
adamshapiro0 committed Jun 6, 2024
1 parent da0888b commit 275186f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/fusion_engine_client/analysis/data_loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ def read(self, *args, **kwargs) \
def _read(self,
message_types: Union[Iterable[MessageType], MessageType] = None,
time_range: TimeRange = None,
source_ids: Optional[List[int]] = None,
source_ids: Optional[Iterable[int]] = None,
show_progress: bool = False,
ignore_cache: bool = False,
max_messages: int = None, max_bytes: int = None,
Expand Down

0 comments on commit 275186f

Please sign in to comment.