Skip to content

Commit

Permalink
chore: Update stubs after pybind11 update
Browse files Browse the repository at this point in the history
  • Loading branch information
sizmailov committed Oct 21, 2023
1 parent b8decd4 commit e04ed08
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class MapStringComplex:
def __delitem__(self, arg0: str) -> None: ...
def __getitem__(self, arg0: str) -> complex: ...
def __init__(self) -> None: ...
def __iter__(self) -> typing.Iterator: ...
def __iter__(self) -> typing.Iterator[str]: ...
def __len__(self) -> int: ...
def __repr__(self) -> str:
"""
Expand Down Expand Up @@ -69,7 +69,7 @@ class VectorPairStringDouble:
"""
@typing.overload
def __init__(self, arg0: typing.Iterable) -> None: ...
def __iter__(self) -> typing.Iterator: ...
def __iter__(self) -> typing.Iterator[tuple[str, float]]: ...
def __len__(self) -> int: ...
def __ne__(self, arg0: VectorPairStringDouble) -> bool: ...
@typing.overload
Expand Down

0 comments on commit e04ed08

Please sign in to comment.