Skip to content

Commit

Permalink
Fixed linting
Browse files Browse the repository at this point in the history
  • Loading branch information
tkakar committed Oct 30, 2024
1 parent 3ad7b52 commit 7a77e26
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions context/app/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,8 +161,11 @@ def get_epics_pyramid_entity(client, uuid):
}
fields = ['uuid',
'last_modified_timestamp']
descendant_entities = client.get_entities(plural_lc_entity_type='datasets',
query_override=query_override, non_metadata_fields=fields)
descendant_entities = client.get_entities(
plural_lc_entity_type='datasets',
query_override=query_override,
non_metadata_fields=fields
)
except Exception as e:
print(f"Error retrieving descendant entities {str(e)}")

Expand Down

0 comments on commit 7a77e26

Please sign in to comment.