Skip to content

Commit

Permalink
schema fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Robbie1977 committed Aug 11, 2024
1 parent 152e373 commit 3801c3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vfb_connect/neo/query_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ def get_terms_by_xref(self, acc, db='', id_type=''):
vfb_ids = self.xref_2_vfb_id(acc, db=db, id_type=id_type)

# Extract the list of IDs from the response
ids_to_query = [item['id'] for sublist in vfb_ids for item in sublist]
ids_to_query = [item.get('id') for item in vfb_ids]

# Retrieve term information for all IDs
return self.get_TermInfo(ids_to_query)
Expand Down

0 comments on commit 3801c3e

Please sign in to comment.