add undocumented attributes for threading.Timer (#8059)

This commit is contained in:
Oleg Höfling
2022-06-12 19:34:56 +02:00
committed by GitHub
parent 55eb19d1bd
commit 8bb18aa541

View File

@@ -166,6 +166,12 @@ if sys.version_info >= (3, 8):
ExceptHookArgs = _ExceptHookArgs
class Timer(Thread):
args: Iterable[Any] # undocumented
finished: Event # undocumented
function: Callable[..., Any] # undocumented
interval: float # undocumented
kwargs: Mapping[str, Any] # undocumented
def __init__(
self,
interval: float,