diff options
Diffstat (limited to 'gr-utils/python/modtool/cli/rm.py')
-rw-r--r-- | gr-utils/python/modtool/cli/rm.py | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/gr-utils/python/modtool/cli/rm.py b/gr-utils/python/modtool/cli/rm.py deleted file mode 100644 index f4447d750a..0000000000 --- a/gr-utils/python/modtool/cli/rm.py +++ /dev/null @@ -1,40 +0,0 @@ -# -# Copyright 2018 Free Software Foundation, Inc. -# -# This file is part of GNU Radio -# -# SPDX-License-Identifier: GPL-3.0-or-later -# -# -""" Remove blocks module """ - -from __future__ import print_function -from __future__ import absolute_import -from __future__ import unicode_literals - -import click - -from ..core import get_block_candidates, ModToolRemove -from ..tools import SequenceCompleter -from .base import common_params, block_name, run, cli_input - - -@click.command('remove', short_help=ModToolRemove.description) -@common_params -@block_name -def cli(**kwargs): - """ Remove block (delete files and remove Makefile entries) """ - kwargs['cli'] = True - self = ModToolRemove(**kwargs) - click.secho("GNU Radio module name identified: " + self.info['modname'], fg='green') - get_pattern(self) - run(self) - -def get_pattern(self): - """ Returns the regex pattern for block(s) to be removed """ - 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 delete? (Regex): ') - if not self.info['pattern'] or self.info['pattern'].isspace(): - self.info['pattern'] = '.' |