Skip to content

Commit

Permalink
fix tranqlizer
Browse files Browse the repository at this point in the history
  • Loading branch information
YaphetKG committed Jun 6, 2024
1 parent f621f17 commit 807aafa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dug/core/concept_expander.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def expand_identifier(self, identifier, query_factory, kg_filename, include_all_
with open(kg_filename, 'r') as stream:
response = json.load(stream)
else:
query = query_factory._get_var_query(identifier)
query = query_factory.get_query(identifier)
logger.debug(query)
response = requests.post(
url=self.url,
Expand Down

0 comments on commit 807aafa

Please sign in to comment.