From 27130535a938857810cff761b8ad85bd517f043e Mon Sep 17 00:00:00 2001 From: Chezka Quinola Date: Thu, 31 Oct 2024 13:41:22 -0400 Subject: [PATCH] fix: gave one param to parse config --- gatorgrade/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gatorgrade/main.py b/gatorgrade/main.py index 9eafd45d..38d542a7 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, check_exclude) + checks, match = parse_config(filename) # there are valid checks and thus the # tool should run them with run_checks if len(checks) > 0: