diff options
author | Johnathan Corgan <johnathan@corganlabs.com> | 2015-06-14 09:19:03 -0700 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2015-06-14 09:19:03 -0700 |
commit | 7ee2f91d3c51498a6d1923fb47f47b882c9a77e5 (patch) | |
tree | 525e79df13a027722b88fc0f031696833fed46ec /grc/python/Block.py | |
parent | a80edf4570d75f1325dce7e026e166956bb1db5f (diff) | |
parent | 91dd2fce59ba81d4dc22b9dcdc909211cafe9f5f (diff) |
Merge remote-tracking branch 'gnuradio-wg-grc/master_grcwg'
Diffstat (limited to 'grc/python/Block.py')
-rw-r--r-- | grc/python/Block.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/grc/python/Block.py b/grc/python/Block.py index 191b03b452..5d52e2bf3c 100644 --- a/grc/python/Block.py +++ b/grc/python/Block.py @@ -52,7 +52,6 @@ class Block(_Block, _GUIBlock): self._var_make = n.find('var_make') self._checks = n.findall('check') self._callbacks = n.findall('callback') - self._throttle = n.find('throttle') or '' self._bus_structure_source = n.find('bus_structure_source') or '' self._bus_structure_sink = n.find('bus_structure_sink') or '' #build the block @@ -78,8 +77,6 @@ class Block(_Block, _GUIBlock): except: return '' - def throttle(self): return bool(self._throttle) - def validate(self): """ Validate this block. |