This commit is contained in:
Trinh Anh Ngoc
2023-05-18 21:51:34 +07:00
parent f7cd5b8c90
commit 25f426ca78
6 changed files with 0 additions and 15 deletions

View File

@@ -26,7 +26,6 @@ class _ClassProperty(property, Generic[_T]):
def classproperty(func: Callable[..., _T]) -> _ClassProperty[_T]: ...
class lazy:
__slots__ = ["_func", "_args", "_kwargs", "_cached_value"]
def __init__(self, func, *args, **kwargs) -> None: ...
@property
def _value(self): ...