summaryrefslogtreecommitdiff
path: root/grc/model/Param.py
diff options
context:
space:
mode:
Diffstat (limited to 'grc/model/Param.py')
-rw-r--r--grc/model/Param.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/grc/model/Param.py b/grc/model/Param.py
index e00be7e203..f064097256 100644
--- a/grc/model/Param.py
+++ b/grc/model/Param.py
@@ -121,6 +121,8 @@ class Option(Element):
class Param(Element):
+ is_param = True
+
def __init__(self, block, n):
"""
Make a new param from nested data.
@@ -666,9 +668,6 @@ class Param(Element):
def get_tab_label(self):
return self._tab_label
- def is_param(self):
- return True
-
def get_name(self):
return self.get_parent().resolve_dependencies(self._name).strip()