Skip to content

Commit

Permalink
fix(annotation): use is instead of Is
Browse files Browse the repository at this point in the history
Since the definition in the LEMS types is `is` too, and it's case
sensitive.
  • Loading branch information
sanjayankur31 committed Jun 7, 2024
1 parent f0de36b commit a4693ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyneuroml/annotations.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def __init__(self):
"description": DC.description,
"keywords": PRISM.keyword,
"thumbnails": COLLEX.thumbnail,
"is_": BQBIOL.Is,
"is_": getattr(BQBIOL, "is"),
"organisms": BQBIOL.hasTaxon,
"encodes_other_biology": BQBIOL.encodes,
"has_version": BQBIOL.hasVersion,
Expand Down

0 comments on commit a4693ba

Please sign in to comment.