diff --git a/.pylintrc b/.pylintrc new file mode 100644 index 000000000..6d99228cd --- /dev/null +++ b/.pylintrc @@ -0,0 +1,3 @@ +[MESSAGES CONTROL] +disable=C0115 +disable=C0116 diff --git a/apps/accounts/risk_handlers.py b/apps/accounts/risk_handlers.py index a10eb0973..301e2e8ad 100644 --- a/apps/accounts/risk_handlers.py +++ b/apps/accounts/risk_handlers.py @@ -16,6 +16,7 @@ from common.utils import random_string TYPE_CHOICES = [ ("ignore", _("Ignore")), ("reopen", _("Reopen")), + ("close", _("Close")), ("disable_remote", _("Disable remote")), ("delete_remote", _("Delete remote")), ("delete_both", _("Delete remote")), @@ -72,6 +73,9 @@ class RiskHandler: def handle_reopen(self): pass + def handle_close(self): + pass + def handle_review(self): pass