Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pycycle/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def format_help(_help):
@click.group(invoke_without_command=True)
@click.option('--verbose', is_flag=True, default=False, help="Verbose output.")
@click.option('--here', is_flag=True, default=False, help="Try to find cycles in the current project.")
@click.option('--source', default=False, help="Try to find cycles in the path provided.")
@click.option('--source', default='', help="Try to find cycles in the path provided.")
@click.option('--ignore', default='', help="Comma separated directories that will be ignored during analysis.")
@click.option('--encoding', default=None, help="Change enconding with which the project is read.")
@click.option('--help', is_flag=True, default=None, help="Show this message then exit.")
Expand Down