Skip to content

Commit 1b1c176

Browse files
committed
smartpause: don't fail if types don't exist
1 parent f2de824 commit 1b1c176

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

safeeyes/plugins/smartpause/ext_idle_notify.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,8 +197,8 @@ class ExtIdleNotifyInternal:
197197
Split out into a separate object to simplify lifetime handling.
198198
"""
199199

200-
_idle_notifier: typing.Optional[ExtIdleNotifierV1] = None
201-
_notification: typing.Optional[ExtIdleNotificationV1] = None
200+
_idle_notifier: typing.Optional["ExtIdleNotifierV1"] = None
201+
_notification: typing.Optional["ExtIdleNotificationV1"] = None
202202
_display: Display
203203
_r_channel_stop: int
204204
_w_channel_started: int

0 commit comments

Comments
 (0)