Mark first argument of __[get|set|del]attr__ as str (#9245)

This commit is contained in:
Nikita Sobolev
2022-11-22 14:06:50 +03:00
committed by GitHub
parent 3026610797
commit 18e2ae762b
53 changed files with 106 additions and 106 deletions

View File

@@ -15,7 +15,7 @@ class DYNAMIC_TIME_ZONE_INFORMATION(_SimpleStruct): ...
class TimeZoneDefinition(DYNAMIC_TIME_ZONE_INFORMATION):
def __init__(self, *args, **kwargs) -> None: ...
def __getattribute__(self, attr): ...
def __getattribute__(self, attr: str): ...
@classmethod
def current(cls): ...
def set(self) -> None: ...