mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-16 08:47:39 +08:00
Add ret_type keyword argument for croniter (#668)
The croniter __init__ method does have a ret_type keyword argument. See also https://github.com/kiorky/croniter/blob/062fdc0/src/croniter/croniter.py#L66.
This commit is contained in:
committed by
Guido van Rossum
parent
13b1cdc834
commit
ca98a8ee91
2
third_party/2/croniter.pyi
vendored
2
third_party/2/croniter.pyi
vendored
@@ -15,7 +15,7 @@ class croniter:
|
||||
cur = ... # type: Any
|
||||
exprs = ... # type: Any
|
||||
expanded = ... # type: Any
|
||||
def __init__(self, expr_format, start_time=...) -> None: ...
|
||||
def __init__(self, expr_format, start_time=..., ret_type=...) -> None: ...
|
||||
def get_next(self, ret_type=...): ...
|
||||
def get_prev(self, ret_type=...): ...
|
||||
def get_current(self, ret_type=...): ...
|
||||
|
||||
Reference in New Issue
Block a user