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
Motivation: As discussed in #598, it might make sense to find a way to replace the current_mode() with some other type of way to get the handle to the mode instance.
Example:
defon_enter(mode):
print(mode.active_method)
@keep.running(on_enter=on_enter)defsomefunc():
# business logic only
Motivation: As discussed in #598, it might make sense to find a way to replace the
current_mode()with some other type of way to get the handle to the mode instance.Example: