Skip to content

Commit

Permalink
Attemp to fix python 3.11 errors
Browse files Browse the repository at this point in the history
  • Loading branch information
meowmeowahr committed Mar 16, 2024
1 parent cac1a42 commit a36c9bf
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions animator/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,11 @@ class WipeArgs:
@dataclass
class AnimationArgs:
"Options for animations"
single_color: SingleColorArgs = SingleColorArgs()
glitter_rainbow: GlitterRainbowArgs = GlitterRainbowArgs()
fade: FadeArgs = FadeArgs()
flash: FlashArgs = FlashArgs()
wipe: WipeArgs = WipeArgs()
single_color: SingleColorArgs = field(default_factory=SingleColorArgs)
glitter_rainbow: GlitterRainbowArgs = field(default_factory=GlitterRainbowArgs)
fade: FadeArgs = field(default_factory=FadeArgs)
flash: FlashArgs = field(default_factory=FlashArgs)
wipe: WipeArgs = field(default_factory=WipeArgs)


# Set the desired FPS for your animation
Expand Down

0 comments on commit a36c9bf

Please sign in to comment.