rrule.weekday(...) returns rrule.weekdays, not _common.weekdays. (#3274)

This commit is contained in:
Glyph
2019-10-04 16:49:49 -07:00
committed by Sebastian Rittau
parent 90aa27b54a
commit 83589844c9

View File

@@ -1,9 +1,11 @@
from typing import Optional
from typing import Optional, TypeVar
_T = TypeVar("_T")
class weekday(object):
def __init__(self, weekday: int, n: Optional[int] = ...) -> None: ...
def __call__(self, n: int) -> weekday: ...
def __call__(self: _T, n: int) -> _T: ...
def __eq__(self, other) -> bool: ...