summaryrefslogtreecommitdiff
path: root/scalarbool.py
diff options
context:
space:
mode:
Diffstat (limited to 'scalarbool.py')
-rw-r--r--scalarbool.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/scalarbool.py b/scalarbool.py
index fc8f8c2..3862464 100644
--- a/scalarbool.py
+++ b/scalarbool.py
@@ -1,7 +1,5 @@
# coding: utf-8
-from __future__ import print_function, absolute_import, division, unicode_literals
-
"""
You cannot subclass bool, and this is necessary for round-tripping anchored
bool values (and also if you want to preserve the original way of writing)
@@ -18,8 +16,6 @@ if False: # MYPY
__all__ = ['ScalarBoolean']
-# no need for no_limit_int -> int
-
class ScalarBoolean(int):
def __new__(cls, *args, **kw):