Skip to content

Commit

Permalink
black
Browse files Browse the repository at this point in the history
  • Loading branch information
Lilaa3 committed Jan 9, 2024
1 parent 05400e7 commit 427adc9
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
15 changes: 12 additions & 3 deletions fast64_internal/sm64/animation/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
from .operators import sm64_anim_operator_register, sm64_anim_operator_unregister
from .properties import sm64_anim_properties_register, sm64_anim_properties_unregister
from .panels import sm64_anim_panel_register, sm64_anim_panel_unregister
from .operators import (
sm64_anim_operator_register,
sm64_anim_operator_unregister,
)
from .properties import (
sm64_anim_properties_register,
sm64_anim_properties_unregister,
)
from .panels import (
sm64_anim_panel_register,
sm64_anim_panel_unregister,
)
2 changes: 1 addition & 1 deletion fast64_internal/sm64/animation/classes.py
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ def toAction(self, action):

for i in range(len(self.headers) - 1):
actionProps.header_variants.add()

for header, header_props in zip(self.headers, actionProps.get_headers()):
header.toHeaderProps(action, header_props)

Expand Down
1 change: 1 addition & 0 deletions fast64_internal/sm64/animation/panels.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

from ...panels import SM64_Panel


class SM64_ExportAnimPanel(SM64_Panel):
bl_idname = "SM64_PT_export_anim"
bl_label = "SM64 Animation Exporting"
Expand Down

0 comments on commit 427adc9

Please sign in to comment.