Skip to content

Commit

Permalink
Merge pull request #30 from lucmos/bugfix/staticmethods
Browse files Browse the repository at this point in the history
Add missing static method decorator
  • Loading branch information
lucmos authored Mar 25, 2024
2 parents 13b3d92 + 937be9a commit 8bfb2dd
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/powermanim/showcase/components/chartbars.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@


class ChartBarsShowcase(ShowcaseScene):
@staticmethod
def showcasing():
return ChartBars

Expand Down
1 change: 1 addition & 0 deletions src/powermanim/showcase/components/directionalarrow.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@


class DirectionalArrowShowcase(ShowcaseScene):
@staticmethod
def showcasing():
return DirectionalArrow

Expand Down
1 change: 1 addition & 0 deletions src/powermanim/showcase/components/invariance.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@


class InvarianceShowcase(ShowcaseScene):
@staticmethod
def showcasing():
return Invariance

Expand Down
1 change: 1 addition & 0 deletions src/powermanim/showcase/components/numberslider.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@


class NumberSliderShowcase(ShowcaseScene):
@staticmethod
def showcasing():
return NumberSlider

Expand Down
1 change: 1 addition & 0 deletions src/powermanim/showcase/components/vgroupactivable.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@


class VGroupActivableShowcase(ShowcaseScene):
@staticmethod
def showcasing():
return VGroupActivable

Expand Down
1 change: 1 addition & 0 deletions src/powermanim/showcase/layouts/arrangedbullets.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@


class ArrangedBulletsShowcase(ShowcaseScene):
@staticmethod
def showcasing():
return ArrangedBullets

Expand Down
1 change: 1 addition & 0 deletions src/powermanim/showcase/layouts/switchpalette.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ class SwitchPaletteShowcase(ShowcaseScene):
https://github.com/ManimCommunity/manim/blob/main/manim/utils/color/manim_colors.py
"""

@staticmethod
def showcasing():
return SwitchPalette

Expand Down
1 change: 1 addition & 0 deletions src/powermanim/showcase/templates/bulletlist.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@


class BulletListShowcase(ShowcaseScene):
@staticmethod
def showcasing():
return BulletList

Expand Down
1 change: 1 addition & 0 deletions src/powermanim/showcase/templates/reference.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@


class ReferenceShowcase(ShowcaseScene):
@staticmethod
def showcasing():
return Reference

Expand Down
1 change: 1 addition & 0 deletions src/powermanim/showcase/templates/sectiontitle.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@


class SectionTitleShowcase(ShowcaseScene):
@staticmethod
def showcasing():
return SectionTitle

Expand Down

0 comments on commit 8bfb2dd

Please sign in to comment.