You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Defining an [on_mount] method in the child class would cause [on_mount] method being called from both the parent and the child class.
e.g.
# During runtime, both messages will be printedclassParent(App):
defon_mount(self):
print("triggered")
classChild(Parent):
defon_mount(self):
print("triggered in child")
The text was updated successfully, but these errors were encountered:
Defining an [on_mount] method in the child class would cause [on_mount] method being called from both the parent and the child class.
e.g.
The text was updated successfully, but these errors were encountered: