Skip to content

Commit

Permalink
Add a type annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
DaelonSuzuka committed Dec 20, 2024
1 parent 321285e commit 975fb68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stagehand/actions/action_page.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def __init__(self, name='', changed=None, data=None):
self.label = LabelEdit(f'Page {name}', changed=self.changed)
self.group = ActionWidgetGroup(name, changed=self.on_change, parent=self, autosave=False)

self.actions = []
self.actions: list[ActionWidget] = []
self.actions_container = CVBoxLayout()

self.enabled = CustomAnimatedToggle()
Expand Down

0 comments on commit 975fb68

Please sign in to comment.