fix Var.contains pyi (#3663)

This commit is contained in:
benedikt-bartscher 2024-07-12 01:06:32 +02:00 committed by GitHub
parent 86a2f923f6
commit dc33d208b4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -118,7 +118,7 @@ class Var:
def __or__(self, other: Var) -> Var: ...
def __ror__(self, other: Var) -> Var: ...
def __contains__(self, _: Any) -> Var: ...
def contains(self, other: Any) -> Var: ...
def contains(self, other: Any, field: Union[Var, None] = None) -> Var: ...
def reverse(self) -> Var: ...
def foreach(self, fn: Callable) -> Var: ...
@classmethod