Skip to content

Commit a4693ba

Browse files
committed
fix(annotation): use is instead of Is
Since the definition in the LEMS types is `is` too, and it's case sensitive.
1 parent f0de36b commit a4693ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyneuroml/annotations.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ def __init__(self):
9393
"description": DC.description,
9494
"keywords": PRISM.keyword,
9595
"thumbnails": COLLEX.thumbnail,
96-
"is_": BQBIOL.Is,
96+
"is_": getattr(BQBIOL, "is"),
9797
"organisms": BQBIOL.hasTaxon,
9898
"encodes_other_biology": BQBIOL.encodes,
9999
"has_version": BQBIOL.hasVersion,

0 commit comments

Comments
 (0)