summaryrefslogtreecommitdiff
path: root/gr-utils/modtool/cli/disable.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/disable.py
parent1bfc6b439dbcdc467bbbed43a9fd71b49524c348 (diff)
utils: pep8 formatting
Signed-off-by: Josh Morman <jmorman@gnuradio.org>
Diffstat (limited to 'gr-utils/modtool/cli/disable.py')
-rw-r--r--gr-utils/modtool/cli/disable.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/gr-utils/modtool/cli/disable.py b/gr-utils/modtool/cli/disable.py
index 136b4e0ee6..093128f5ce 100644
--- a/gr-utils/modtool/cli/disable.py
+++ b/gr-utils/modtool/cli/disable.py
@@ -23,15 +23,18 @@ def cli(**kwargs):
"""Disable a block (comments out CMake entries for files)"""
kwargs['cli'] = True
self = ModToolDisable(**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 disabled """
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 disable? (Regex): ')
+ self.info['pattern'] = cli_input(
+ 'Which blocks do you want to disable? (Regex): ')
if not self.info['pattern'] or self.info['pattern'].isspace():
self.info['pattern'] = '.'