Add assert for type checker

This commit is contained in:
Isaiah Odhner 2023-09-09 22:29:54 -04:00
parent 26f6bfe8ed
commit 43ae6f7365

View File

@ -81,6 +81,7 @@ class PilotRecorder():
self.app_on_event = on_event
def record_event(self, event: Event) -> None:
assert self.app is not None, "app should be set if we're recording an event from it"
if self.replaying:
return
if isinstance(event, (MouseDown, MouseMove, MouseUp)):