| 1 | # -*- coding: utf-8 -*- |
||
| 2 | |||
| 3 | """Console script for module_renamer.""" |
||
| 4 | import sys |
||
| 5 | import click |
||
|
0 ignored issues
–
show
introduced
by
Loading history...
|
|||
| 6 | |||
| 7 | |||
| 8 | @click.command() |
||
| 9 | def main(args=None): |
||
|
0 ignored issues
–
show
|
|||
| 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 |