Skip to content

Commit

Permalink
Put ignore directive back.
Browse files Browse the repository at this point in the history
  • Loading branch information
aschaffer committed Sep 12, 2023
1 parent 3dc1e68 commit 68e41b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cunumeric/array.py
Original file line number Diff line number Diff line change
Expand Up @@ -4095,7 +4095,7 @@ def find_common_type(*args: Any) -> np.dtype[Any]:
scalar_types.append(array.dtype)
else:
array_types.append(array.dtype)
return np.find_common_type(array_types, scalar_types)
return np.find_common_type(array_types, scalar_types) # type: ignore

def _maybe_convert(self, dtype: np.dtype[Any], hints: Any) -> ndarray:
if self.dtype == dtype:
Expand Down

0 comments on commit 68e41b4

Please sign in to comment.