module_renamer.cli   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 9
dl 0
loc 18
rs 10
c 0
b 0
f 0

1 Function

Rating   Name   Duplication   Size   Complexity  
A main() 0 6 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