Skip to content

Commit

Permalink
fix 'nodot' key in cli parser (#213)
Browse files Browse the repository at this point in the history
`UserWarning: Unknown config keys: {'nodot'}`
  • Loading branch information
Wiguwbe authored Mar 5, 2024
1 parent 2e508e9 commit b292241
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pydeps/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ def parse_args(argv=()):
args.add('--deps-output', dest='deps_out', default=None, kind="FNAME:output", help="write output of dependency analysis to 'file'")
args.add('--show-dot', action='store_true', help="show output of dot conversion")
args.add('--dot-output', dest='dot_out', default=None, kind="FNAME:output", help="write dot code to 'file'")
args.add('--nodot', '--no-dot', action='store_true', help="skip dot conversion")
args.add('--nodot', '--no-dot', action='store_true', default=False, dest='no_dot', help="skip dot conversion")
args.add('--no-output', action='store_true', help="don't create .svg/.png file, implies --no-show (-t/-o will be ignored)")
args.add('--show-cycles', action='store_true', help="show only import cycles")
args.add('--debug-mf', default=0, type=int, metavar="INT", help="set the ModuleFinder.debug flag to this value")
Expand Down

0 comments on commit b292241

Please sign in to comment.