Skip to content

Commit

Permalink
improve comment
Browse files Browse the repository at this point in the history
  • Loading branch information
ilanschnell committed Jun 10, 2021
1 parent eb6ba2f commit 2e0efa4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bitarray/__init__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -59,15 +59,15 @@ class bitarray(MutableSequence[Bool]):
def __getitem__(self, i: int) -> Bool: ...
@overload
def __getitem__(self, s: slice) -> bitarray: ...
@overload # type: ignore # Overrides MutableSequence
@overload # type: ignore[override]
def __setitem__(self, i: Union[int, slice], o: Bool) -> None: ...
@overload
def __setitem__(self, s: slice, o: bitarray) -> None: ...
def __delitem__(self, i: Union[int, slice]) -> None: ...

def __add__(self, other: bitarray) -> bitarray: ...
def __iadd__(self, other: bitarray) -> bitarray: # type: ignore
... # Overrides MutableSequence
def __iadd__(self, other: bitarray) -> bitarray: # type: ignore[override]
...
def __mul__(self, n: int) -> bitarray: ...
def __imul__(self, n: int) -> bitarray: ...
def __rmul__(self, n: int) -> bitarray: ...
Expand Down

0 comments on commit 2e0efa4

Please sign in to comment.