mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-02-06 01:47:41 +08:00
Mark first argument of __[get|set|del]attr__ as str (#9245)
This commit is contained in:
@@ -226,7 +226,7 @@ class TimeProperty(DateTimeProperty): ...
|
||||
|
||||
class StructuredProperty(Property):
|
||||
def __init__(self, model_class: type, name: str | None = ..., **kwargs) -> None: ...
|
||||
def __getattr__(self, attrname): ...
|
||||
def __getattr__(self, attrname: str): ...
|
||||
def IN(self, value: Iterable[object]) -> query_module.DisjunctionNode | query_module.FalseNode: ...
|
||||
|
||||
class LocalStructuredProperty(BlobProperty):
|
||||
|
||||
Reference in New Issue
Block a user