From 0acfd677bd2fbe0d6f1c46b5a3e51176338e2e14 Mon Sep 17 00:00:00 2001 From: "robinwilliam.hundt" <robinwilliam.hundt@stud.uni-goettingen.de> Date: Mon, 13 Nov 2017 20:31:44 +0100 Subject: [PATCH] Added local prospector pre-commit hook also removed unused arguments in delber.py that prospector didn't like --- .pre-commit-config.yaml | 7 +++++-- backend/delbert.py | 11 +++++------ 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 94392e5e..8fc7e2bc 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,5 +1,8 @@ repos: -- repo: git://github.com/guykisel/prospector-mirror - sha: '' # Use the sha / tag you want to point at test +- repo: local hooks: - id: prospector + name: prospector + entry: prospector --uses django + language: system + types: [python] \ No newline at end of file diff --git a/backend/delbert.py b/backend/delbert.py index 4aac0922..557260f5 100644 --- a/backend/delbert.py +++ b/backend/delbert.py @@ -15,7 +15,6 @@ os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'grady.settings') django.setup() -unused_variable = [] def parseme(): parser = argparse.ArgumentParser() @@ -84,7 +83,7 @@ def parseme(): return parser.parse_args() -def handle_passwordlist(output=sys.stdout, instance="", **kwargs): +def handle_passwordlist(output=sys.stdout, instance=""): with open('/usr/share/dict/words') as words: choose_from = list({word.strip().lower() for word in words if 5 < len(word) < 8}) @@ -102,7 +101,7 @@ def handle_passwordlist(output=sys.stdout, instance="", **kwargs): student.user.username, password, instance]) -def handle_enableusers(switch, exclude, include, **kwargs): +def handle_enableusers(switch, exclude, include): if include: for user in User.objects.filter(username__in=include): @@ -114,7 +113,7 @@ def handle_enableusers(switch, exclude, include, **kwargs): user.save() -def handle_replaceusernames(matno2username_dict, **kwargs): +def handle_replaceusernames(matno2username_dict): matno2username = json.JSONDecoder().decode(matno2username_dict.read()) for student in Student.objects.all(): if student.matrikel_no in matno2username: @@ -123,12 +122,12 @@ def handle_replaceusernames(matno2username_dict, **kwargs): student.user.save() -def handle_extractsubmissions(output, **kwargs): +def handle_extractsubmissions(): for submission in Submission.objects.filter(feedback__isnull=False).order_by('type'): print(submission.feedback.score, repr(submission.text), file=open(str(submission.type).replace(' ', '_'), 'a')) -def handle_importer(**kwargs): +def handle_importer(): util.importer.start() def main(): -- GitLab