Skip to content
Prev Previous commit
Next Next commit
use type instead of typing.Type
  • Loading branch information
twoertwein committed Oct 30, 2021
commit 456c4ba4ba6b74d6b142c4eb8e1876e400a3174f
5 changes: 2 additions & 3 deletions pandas/_libs/properties.pyi
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
from typing import (
Any,
Type,
Any
)

cache_readonly = property

class AxisProperty:
def __init__(self, axis: int = ..., doc: str = ...) -> None: ...
def __get__(self, obj: Any, typ: Type) -> Any: ... # TODO
def __get__(self, obj: Any, typ: type) -> Any: ... # TODO
def __set__(self, obj: Any, value: Any) -> None: ... # TODO