summaryrefslogtreecommitdiff
path: root/scalarint.py
diff options
context:
space:
mode:
Diffstat (limited to 'scalarint.py')
-rw-r--r--scalarint.py20
1 files changed, 10 insertions, 10 deletions
diff --git a/scalarint.py b/scalarint.py
index 48f1962..11c8e2e 100644
--- a/scalarint.py
+++ b/scalarint.py
@@ -23,36 +23,36 @@ class ScalarInt(int):
def __iadd__(self, a): # type: ignore
# type: (Any) -> Any
x = type(self)(self + a)
- x._width = self._width
- x._underscore = self._underscore[:] if self._underscore is not None else None
+ x._width = self._width # type: ignore
+ x._underscore = self._underscore[:] if self._underscore is not None else None # type: ignore # NOQA
return x
def __ifloordiv__(self, a): # type: ignore
# type: (Any) -> Any
x = type(self)(self // a)
- x._width = self._width
- x._underscore = self._underscore[:] if self._underscore is not None else None
+ x._width = self._width # type: ignore
+ x._underscore = self._underscore[:] if self._underscore is not None else None # type: ignore # NOQA
return x
def __imul__(self, a): # type: ignore
# type: (Any) -> Any
x = type(self)(self * a)
- x._width = self._width
- x._underscore = self._underscore[:] if self._underscore is not None else None
+ x._width = self._width # type: ignore
+ x._underscore = self._underscore[:] if self._underscore is not None else None # type: ignore # NOQA
return x
def __ipow__(self, a): # type: ignore
# type: (Any) -> Any
x = type(self)(self ** a)
- x._width = self._width
- x._underscore = self._underscore[:] if self._underscore is not None else None
+ x._width = self._width # type: ignore
+ x._underscore = self._underscore[:] if self._underscore is not None else None # type: ignore # NOQA
return x
def __isub__(self, a): # type: ignore
# type: (Any) -> Any
x = type(self)(self - a)
- x._width = self._width
- x._underscore = self._underscore[:] if self._underscore is not None else None
+ x._width = self._width # type: ignore
+ x._underscore = self._underscore[:] if self._underscore is not None else None # type: ignore # NOQA
return x