Skip to content

Commit

Permalink
fix typing error
Browse files Browse the repository at this point in the history
  • Loading branch information
justinfx committed Apr 20, 2024
1 parent b1349a8 commit 823993b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fileseq/frameset.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
normalizeFrame, normalizeFrames, batchIterable)


class FrameSet(Set[Union[int, decimal.Decimal]]):
class FrameSet(Set): # type:ignore[type-arg]
"""
A ``FrameSet`` is an immutable representation of the ordered, unique
set of frames in a given frame range.
Expand Down

0 comments on commit 823993b

Please sign in to comment.