summaryrefslogtreecommitdiff
path: root/scalarint.py
diff options
context:
space:
mode:
Diffstat (limited to 'scalarint.py')
-rw-r--r--scalarint.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/scalarint.py b/scalarint.py
index 3923206..1572b0f 100644
--- a/scalarint.py
+++ b/scalarint.py
@@ -11,10 +11,10 @@ __all__ = ['ScalarInt', 'BinaryInt', 'OctalInt', 'HexInt', 'HexCapsInt', 'Decima
class ScalarInt(int):
def __new__(cls, *args, **kw):
# type: (Any, Any, Any) -> Any
- width = kw.pop('width', None) # type: ignore
- underscore = kw.pop('underscore', None) # type: ignore
- anchor = kw.pop('anchor', None) # type: ignore
- v = int.__new__(cls, *args, **kw) # type: ignore
+ width = kw.pop('width', None)
+ underscore = kw.pop('underscore', None)
+ anchor = kw.pop('anchor', None)
+ v = int.__new__(cls, *args, **kw)
v._width = width
v._underscore = underscore
if anchor is not None: