aboutsummaryrefslogtreecommitdiffstats
path: root/gr-utils/python/modtool/cli/add.py
diff options
context:
space:
mode:
Diffstat (limited to 'gr-utils/python/modtool/cli/add.py')
-rw-r--r--gr-utils/python/modtool/cli/add.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/gr-utils/python/modtool/cli/add.py b/gr-utils/python/modtool/cli/add.py
index 51a63ffc6..694d49f5f 100644
--- a/gr-utils/python/modtool/cli/add.py
+++ b/gr-utils/python/modtool/cli/add.py
@@ -127,7 +127,13 @@ def get_copyrightholder(self):
def get_arglist(self):
""" Get the argument list of the block to be added """
if self.info['arglist'] is not None:
- self.info['arglist'] = click.prompt(click.style('Enter valid argument list, including default arguments: \n', fg='cyan'), prompt_suffix='')
+ self.info['arglist'] = click.prompt(click.style(
+ 'Enter valid argument list, including default arguments: \n',
+ fg='cyan'),
+ prompt_suffix='',
+ default='',
+ show_default=False)
+
def get_py_qa(self):
""" Get a boolean value for addition of py_qa """