mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 21:14:48 +08:00
add undocumented attributes for threading.Timer (#8059)
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user