Skip to content

Commit

Permalink
Fix extra comma
Browse files Browse the repository at this point in the history
  • Loading branch information
yuanzhou committed Jul 20, 2024
1 parent a355dee commit 8a541b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/hubmap_translator.py
Original file line number Diff line number Diff line change
Expand Up @@ -559,11 +559,11 @@ def translate(self, entity_id):
# Only Dataset/Publication entities may have previous/next revisions
if entity['entity_type'] in ['Dataset', 'Publication']:
previous_revision_ids = self.call_entity_api(entity_id=entity_id
, endpoint_base='previous_revisions',
, endpoint_base='previous_revisions'
, endpoint_suffix=None
, url_property='uuid')
next_revision_ids = self.call_entity_api(entity_id=entity_id
, endpoint_base='next_revisions',
, endpoint_base='next_revisions'
, endpoint_suffix=None
, url_property='uuid')

Expand Down

0 comments on commit 8a541b9

Please sign in to comment.