Skip to content

Commit ffc77f2

Browse files
committed
fix: mypy type check
Signed-off-by: yihong0618 <zouzou0208@gmail.com>
1 parent 0609120 commit ffc77f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/_pyrepl/unix_console.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ def __init__(
159159
self.pollob = poll()
160160
self.pollob.register(self.input_fd, select.POLLIN)
161161
self._poll_lock = threading.RLock()
162-
self._polling_thread = None
162+
self._polling_thread: threading.Thread | None = None
163163
self.terminfo = terminfo.TermInfo(term or None)
164164
self.term = term
165165

0 commit comments

Comments
 (0)