Skip to content

Commit

Permalink
BUG: Removed typing for == and != in dtypes
Browse files Browse the repository at this point in the history
  • Loading branch information
ganesh-k13 authored and charris committed Jun 17, 2021
1 parent 98d88c6 commit d80e473
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions numpy/__init__.pyi
Expand Up @@ -1075,8 +1075,6 @@ class dtype(Generic[_DTypeScalar_co]):
# literals as of mypy 0.800. Set the return-type to `Any` for now.
def __rmul__(self, value: int) -> Any: ...

def __eq__(self, other: DTypeLike) -> bool: ...
def __ne__(self, other: DTypeLike) -> bool: ...
def __gt__(self, other: DTypeLike) -> bool: ...
def __ge__(self, other: DTypeLike) -> bool: ...
def __lt__(self, other: DTypeLike) -> bool: ...
Expand Down

0 comments on commit d80e473

Please sign in to comment.