summaryrefslogtreecommitdiff
path: root/gr-utils/python/modtool/core/base.py
diff options
context:
space:
mode:
Diffstat (limited to 'gr-utils/python/modtool/core/base.py')
-rw-r--r--gr-utils/python/modtool/core/base.py17
1 files changed, 1 insertions, 16 deletions
diff --git a/gr-utils/python/modtool/core/base.py b/gr-utils/python/modtool/core/base.py
index 55b6f48076..d9f6a3b6e2 100644
--- a/gr-utils/python/modtool/core/base.py
+++ b/gr-utils/python/modtool/core/base.py
@@ -30,22 +30,7 @@ import glob
import logging
import itertools
-try:
- from types import SimpleNamespace
-except:
- # Py2.7 doesn't have SimpleNamespace, soooo use what Py3 docs say is roughly equivalent
- class SimpleNamespace:
- def __init__(self, **kwargs):
- self.__dict__.update(kwargs)
-
- def __repr__(self):
- keys = sorted(self.__dict__)
- items = ("{}={!r}".format(k, self.__dict__[k]) for k in keys)
- return "{}({})".format(type(self).__name__, ", ".join(items))
-
- def __eq__(self, other):
- return self.__dict__ == other.__dict__
-
+from types import SimpleNamespace
from gnuradio import gr
from ..tools import get_modname, SCMRepoFactory