Skip to content

Commit

Permalink
Merge pull request #394 from gaurav/patch-1
Browse files Browse the repository at this point in the history
Fixed typo in Scigraph API call
  • Loading branch information
falquaddoomi authored Apr 26, 2022
2 parents 171d90a + 1dfffb6 commit 881e108
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions biolink/api/nlp/endpoints/annotate.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,7 @@ def parse_args_for_annotator(parser):
args['longestOnly'] = val
if 'include_abbreviation' in args:
val = args.pop('include_abbreviation')
args['include_abbrev'] = val
if 'include_acronym' in args:
val = args.pop('include_acronym')
args['includeAcronym'] = val
args['includeAbbrev'] = val
if 'include_acronym' in args:
val = args.pop('include_acronym')
args['includeAcronym'] = val
Expand Down

0 comments on commit 881e108

Please sign in to comment.