mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2024-11-14 17:40:24 -08:00
9 lines
294 B
Python
9 lines
294 B
Python
from typing import Any, Callable, Optional
|
|
|
|
class ClassProperty(property):
|
|
def __get__(self, cls: Any, owner: Optional[type] = ...) -> Any: ...
|
|
|
|
class multimethod:
|
|
def __init__(self, func: Callable[..., Any]): ...
|
|
def __get__(self, instance: Any, owner: Optional[type]) -> Any: ...
|