diff options
| author | 2019-10-08 12:20:08 +0100 | |
|---|---|---|
| committer | 2019-10-08 12:20:08 +0100 | |
| commit | 4c02c7c86ab5bfd522947155ed2b558b6f5c510e (patch) | |
| tree | cd7a7423b90a87d253088755d0d5d33f9b7b2f75 /src/PollHook.py | |
| parent | only show youtu.be url when one was not provided (diff) | |
| signature | ||
refactor anything that effects event poll timeout in to PollHook objects
Diffstat (limited to 'src/PollHook.py')
| -rw-r--r-- | src/PollHook.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/PollHook.py b/src/PollHook.py new file mode 100644 index 00000000..a0e9d8c5 --- /dev/null +++ b/src/PollHook.py @@ -0,0 +1,7 @@ +import typing + +class PollHook(object): + def next(self) -> typing.Optional[float]: + return None + def call(self): + return None |
