Skip to content

Commit

Permalink
Fix type error
Browse files Browse the repository at this point in the history
  • Loading branch information
annehaley committed Oct 10, 2024
1 parent 4e1ed1a commit 385a9f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion large_image/tilesource/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -1322,7 +1322,7 @@ def _getFrameValueInformation(self, frames: List[Dict]):
if 'Value' in key:
if key not in refvalues:
refvalues[key] = {}
value_index = frame.get(key.replace('Value', 'Index'))
value_index = str(frame.get(key.replace('Value', 'Index')))
if value_index not in refvalues[key]:
refvalues[key][value_index] = [value]
else:
Expand Down

0 comments on commit 385a9f4

Please sign in to comment.