Skip to content

Commit

Permalink
fix(main.py): changed parse_config to handle fileame only
Browse files Browse the repository at this point in the history
  • Loading branch information
Chezka109 committed Oct 30, 2024
1 parent e5f5723 commit 9822481
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gatorgrade/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def gatorgrade(
# that, by default, gatorgrade should run in checking mode
if ctx.invoked_subcommand is None:
# parse the provided configuration file
(checks, match) = parse_config(filename, check_include=None, check_exclude=None)
(checks, match) = parse_config(filename)
# there are valid checks and thus the
# tool should run them with run_checks
if len(checks) > 0:
Expand Down

0 comments on commit 9822481

Please sign in to comment.