module_renamer.cli.main()   A
last analyzed

Complexity

Conditions 1

Size

Total Lines 6
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 4
dl 0
loc 6
rs 9.4285
c 0
b 0
f 0
cc 1
nop 1
1
# -*- coding: utf-8 -*-
2
3
"""Console script for module_renamer."""
4
import sys
5
import click
0 ignored issues
show
introduced by
Unable to import 'click'
Loading history...
6
7
8
@click.command()
9
def main(args=None):
0 ignored issues
show
Unused Code introduced by
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