From 98224819501cc9e8245d3ebc26457ea449b7bddb Mon Sep 17 00:00:00 2001 From: Chezka Quinola Date: Wed, 30 Oct 2024 12:01:10 -0400 Subject: [PATCH] fix(main.py): changed parse_config to handle fileame only --- gatorgrade/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gatorgrade/main.py b/gatorgrade/main.py index dc627cba..5349cdc7 100644 --- a/gatorgrade/main.py +++ b/gatorgrade/main.py @@ -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: