Skip to content

Commit d737fd0

Browse files
authored
Typing changes
1 parent fe50015 commit d737fd0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/trio/_subprocess_platform/kqueue.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ async def wait_child_exiting(process: _subprocess.Process) -> None:
1717
# pypy doesn't define KQ_NOTE_EXIT:
1818
# https://bitbucket.org/pypy/pypy/issues/2921/
1919
# I verified this value against both Darwin and FreeBSD
20-
KQ_NOTE_EXIT = 0x80000000
20+
KQ_NOTE_EXIT = 0x80000000 # type: ignore[misc]
2121

2222
def make_event(flags: int) -> select.kevent:
2323
return select.kevent(

0 commit comments

Comments
 (0)