aboutsummaryrefslogtreecommitdiffstats
path: root/mpm/python
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2018-07-13 16:25:48 -0700
committerMartin Braun <martin.braun@ettus.com>2018-07-17 10:49:21 -0700
commitc8c4cf1b0c1167db1b83b3b3d090bf24bb2a5401 (patch)
tree6c4488aef2540170824a6c69dc2b4c1f7e094f40 /mpm/python
parent8e02dec0fb4fd8f3e3b87a47209fc1326ee169d6 (diff)
downloaduhd-c8c4cf1b0c1167db1b83b3b3d090bf24bb2a5401.tar.gz
uhd-c8c4cf1b0c1167db1b83b3b3d090bf24bb2a5401.tar.bz2
uhd-c8c4cf1b0c1167db1b83b3b3d090bf24bb2a5401.zip
mpm: Remove unused _init_args from PeriphManagerBase
Diffstat (limited to 'mpm/python')
-rw-r--r--mpm/python/usrp_mpm/periph_manager/base.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/mpm/python/usrp_mpm/periph_manager/base.py b/mpm/python/usrp_mpm/periph_manager/base.py
index 5eedb27e7..b698f661b 100644
--- a/mpm/python/usrp_mpm/periph_manager/base.py
+++ b/mpm/python/usrp_mpm/periph_manager/base.py
@@ -168,9 +168,6 @@ class PeriphManagerBase(object):
# Set up logging
self.log = get_logger('PeriphManager')
self.claimed = False
- # The _init_args are a check for the args that passed into init(). This
- # should always be a dictionary (or dictionary-like object).
- self._init_args = {}
try:
self._eeprom_head, self._eeprom_rawdata = \
self._read_mboard_eeprom()
@@ -433,7 +430,6 @@ class PeriphManagerBase(object):
self.log.error(
"Cannot run init(), device was never fully initialized!")
return False
- self._init_args = args
if len(self.dboards) == 0:
return True
if args.get("serialize_init", False):