Skip to content

Commit

Permalink
fix linter issue
Browse files Browse the repository at this point in the history
  • Loading branch information
bernt-matthias committed Jun 1, 2024
1 parent 6a1b47d commit dd1dacf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bioblend/galaxy/dataset_collections/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def __init__(
self.name = name
self.type = type
if isinstance(elements, dict):
self.elements: List[Union["CollectionElement", "SimpleElement"]] = [
self.elements: List[Union[CollectionElement, SimpleElement]] = [
HistoryDatasetElement(name=key, id=value) for key, value in elements.values()
]
elif elements:
Expand Down

0 comments on commit dd1dacf

Please sign in to comment.