| Total Complexity | 1 | 
| Total Lines | 18 | 
| Duplicated Lines | 0 % | 
| Changes | 0 | ||
| 1 | # -*- coding: utf-8 -*- | ||
| 2 | |||
| 3 | """Console script for module_renamer.""" | ||
| 4 | import sys | ||
| 5 | import click | ||
|  | |||
| 6 | |||
| 7 | |||
| 8 | @click.command() | ||
| 9 | def main(args=None): | ||
| 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 |