Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow Configurable Project Name #109

Open
wants to merge 14 commits into
base: main
Choose a base branch
from
Prev Previous commit
Next Next commit
fix: remove missing param
  • Loading branch information
burgess01 committed Dec 7, 2022
commit c55c3323f8f0bac443aad69385d326b66f47dd16
2 changes: 1 addition & 1 deletion gatorgrade/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def gatorgrade(
project_name = get_assignment_name(filename)

if len(checks) > 0:
checks_status = run_checks(checks)
checks_status = run_checks(checks, project_name)
# no checks were created and this means
# that, most likely, the file was not
# valid and thus the tool cannot run checks
Expand Down