Skip to content

Commit

Permalink
Merge pull request #466 from dodona-edu/fix/pylint-crash
Browse files Browse the repository at this point in the history
Fix crash in Pylint 3
  • Loading branch information
niknetniko authored Nov 24, 2023
2 parents c5f0b09 + ad77607 commit 7817e62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tested/languages/python/linter.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def run_pylint(
try:
args = [f"--rcfile={config_path}", str(submission)]
logger.debug("Running with template_args %s", args)
lint.Run(args, reporter=JSONReporter(output=pylint_out), do_exit=False)
lint.Run(args, reporter=JSONReporter(output=pylint_out), exit=False)
except Exception as e:
logger.warning("Pylint crashed with", exc_info=e)
return [
Expand Down

0 comments on commit 7817e62

Please sign in to comment.