Skip to content

Commit

Permalink
Merge pull request #634 from FZJ-INM1-BDA/fix_ci_failure
Browse files Browse the repository at this point in the history
fix ci for pythons version <= 3.8
  • Loading branch information
AhmetNSimsek authored Dec 18, 2024
2 parents 8869ca8 + 6efe77c commit bf0ab6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion siibra/volumes/parcellationmap.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ def __init__(
@property
def key(self):
_id = self.id
return create_key(_id.removeprefix("siibra-map-v0.0.1"))
return create_key(_id[len("siibra-map-v0.0.1"):])

@property
def species(self) -> Species:
Expand Down

0 comments on commit bf0ab6f

Please sign in to comment.