Issues (2)

module_renamer/cli.py (2 issues)

1
# -*- coding: utf-8 -*-
2
3
"""Console script for module_renamer."""
4
import sys
5
import click
0 ignored issues
show
Unable to import 'click'
Loading history...
6
7
8
@click.command()
9
def main(args=None):
0 ignored issues
show
The argument args seems to be unused.
Loading history...
10
    """Console script for module_renamer."""
11
    click.echo("Replace this message by putting your code into "
12
               "module_renamer.cli.main")
13
    return 0
14
15
16
if __name__ == "__main__":
17
    sys.exit(main())  # pragma: no cover
18