7 lines
145 B
Python
7 lines
145 B
Python
import typing
|
|
|
|
class PollHook(object):
|
|
def next(self) -> typing.Optional[float]:
|
|
return None
|
|
def call(self):
|
|
return None
|