Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
egparedes committed Nov 16, 2023
1 parent f8b7bc7 commit 3b16173
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/gt4py/next/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -500,47 +500,47 @@ def __invert__(self) -> Field:
"""Only defined for `Field` of value type `bool`."""

@abc.abstractmethod
def __add__(self, other: Field | ValueT) -> Field:
def __add__(self, other: Field | ValueType) -> Field:
...

@abc.abstractmethod
def __radd__(self, other: Field | ValueT) -> Field:
def __radd__(self, other: Field | ValueType) -> Field:
...

@abc.abstractmethod
def __sub__(self, other: Field | ValueT) -> Field:
def __sub__(self, other: Field | ValueType) -> Field:
...

@abc.abstractmethod
def __rsub__(self, other: Field | ValueT) -> Field:
def __rsub__(self, other: Field | ValueType) -> Field:
...

@abc.abstractmethod
def __mul__(self, other: Field | ValueT) -> Field:
def __mul__(self, other: Field | ValueType) -> Field:
...

@abc.abstractmethod
def __rmul__(self, other: Field | ValueT) -> Field:
def __rmul__(self, other: Field | ValueType) -> Field:
...

@abc.abstractmethod
def __floordiv__(self, other: Field | ValueT) -> Field:
def __floordiv__(self, other: Field | ValueType) -> Field:
...

@abc.abstractmethod
def __rfloordiv__(self, other: Field | ValueT) -> Field:
def __rfloordiv__(self, other: Field | ValueType) -> Field:
...

@abc.abstractmethod
def __truediv__(self, other: Field | ValueT) -> Field:
def __truediv__(self, other: Field | ValueType) -> Field:
...

@abc.abstractmethod
def __rtruediv__(self, other: Field | ValueT) -> Field:
def __rtruediv__(self, other: Field | ValueType) -> Field:
...

@abc.abstractmethod
def __pow__(self, other: Field | ValueT) -> Field:
def __pow__(self, other: Field | ValueType) -> Field:
...

@abc.abstractmethod
Expand Down

0 comments on commit 3b16173

Please sign in to comment.