Skip to content

Commit

Permalink
Fix for mypy 1.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nsoranzo committed Apr 28, 2024
1 parent 0629908 commit 6492f07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/model/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6409,7 +6409,7 @@ def attribute_columns(column_collection, attributes, nesting_level=None):
for entity in return_entities:
q = q.add_columns(entity)
if entity == DatasetCollectionElement:
q = q.filter(entity.id == dce.c.id) # type:ignore[arg-type]
q = q.filter(entity.id == dce.c.id)

q = q.order_by(*order_by_columns)
return q
Expand Down

0 comments on commit 6492f07

Please sign in to comment.