mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-01-29 22:32:11 +08:00
Mark first argument of __[get|set|del]attr__ as str (#9245)
This commit is contained in:
@@ -19,7 +19,7 @@ BASE_ALIGN_VALUE: str
|
||||
class PrettyTable:
|
||||
encoding: Any
|
||||
def __init__(self, field_names: Any | None = ..., **kwargs): ...
|
||||
def __getattr__(self, name): ...
|
||||
def __getattr__(self, name: str): ...
|
||||
def __getitem__(self, index): ...
|
||||
@property
|
||||
def field_names(self): ...
|
||||
|
||||
Reference in New Issue
Block a user