summaryrefslogtreecommitdiff
path: root/gr-utils/modtool/cli/makeyaml.py
diff options
context:
space:
mode:
authorJosh Morman <jmorman@gnuradio.org>2021-11-24 12:43:14 -0500
committermormj <34754695+mormj@users.noreply.github.com>2021-11-24 14:41:53 -0500
commite6f61fba108fb40ad8103ef4fadbe507932695ab (patch)
tree354a7a48dc48f06f448ff842329074a50b3fca5c /gr-utils/modtool/cli/makeyaml.py
parent1bfc6b439dbcdc467bbbed43a9fd71b49524c348 (diff)
utils: pep8 formatting
Signed-off-by: Josh Morman <jmorman@gnuradio.org>
Diffstat (limited to 'gr-utils/modtool/cli/makeyaml.py')
-rw-r--r--gr-utils/modtool/cli/makeyaml.py10
1 files changed, 7 insertions, 3 deletions
diff --git a/gr-utils/modtool/cli/makeyaml.py b/gr-utils/modtool/cli/makeyaml.py
index c3019cb4fe..8ea99365ec 100644
--- a/gr-utils/modtool/cli/makeyaml.py
+++ b/gr-utils/modtool/cli/makeyaml.py
@@ -43,7 +43,8 @@ def cli(**kwargs):
if kwargs['blocktool']:
kwargs['modtool'] = True
if kwargs['blockname'] is None:
- raise BlockToolException('Missing argument FILE PATH with blocktool flag')
+ raise BlockToolException(
+ 'Missing argument FILE PATH with blocktool flag')
kwargs['file_path'] = os.path.abspath(kwargs['blockname'])
if os.path.isfile(kwargs['file_path']):
parse_yml = BlockHeaderParser(**kwargs)
@@ -55,15 +56,18 @@ def cli(**kwargs):
raise BlockToolException('Invalid file path.')
else:
self = ModToolMakeYAML(**kwargs)
- click.secho("GNU Radio module name identified: " + self.info['modname'], fg='green')
+ click.secho("GNU Radio module name identified: " +
+ self.info['modname'], fg='green')
get_pattern(self)
run(self)
+
def get_pattern(self):
""" Get the regex pattern for block(s) to be parsed """
if self.info['pattern'] is None:
block_candidates = get_block_candidates()
with SequenceCompleter(block_candidates):
- self.info['pattern'] = cli_input('Which blocks do you want to parse? (Regex): ')
+ self.info['pattern'] = cli_input(
+ 'Which blocks do you want to parse? (Regex): ')
if not self.info['pattern'] or self.info['pattern'].isspace():
self.info['pattern'] = '.'