diff options
Diffstat (limited to 'grc/core/Platform.py')
-rw-r--r-- | grc/core/Platform.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/grc/core/Platform.py b/grc/core/Platform.py index 2c0b83dca4..069870d389 100644 --- a/grc/core/Platform.py +++ b/grc/core/Platform.py @@ -53,10 +53,9 @@ class Platform(Element): def __init__(self, *args, **kwargs): """ Make a platform for GNU Radio """ - Element.__init__(self) + Element.__init__(self, parent=None) self.config = self.Config(*args, **kwargs) - self.block_docstrings = {} self.block_docstrings_loaded_callback = lambda: None # dummy to be replaced by BlockTreeWindow |