Skip to content

Commit

Permalink
fix: flake & typo
Browse files Browse the repository at this point in the history
  • Loading branch information
marcorichetta committed Sep 7, 2023
1 parent 12ea12d commit 09b7b62
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyarweb/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
from captcha.fields import CaptchaField


class SingupFormWithCaptcha(SignupForm):
class SignupFormWithCaptcha(SignupForm):
captcha = CaptchaField()
4 changes: 2 additions & 2 deletions pyarweb/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@

GOOGLE_TRACKING_ID = os.environ.get('GOOGLE_TRACKING_ID', '')

ACCOUNT_FORMS = {'signup': 'pyarweb.forms.SingupFormWithCaptcha'}
ACCOUNT_FORMS = {'signup': 'pyarweb.forms.SignupFormWithCaptcha'}

DJANGO_EASY_AUDIT_WATCH_AUTH_EVENTS = False
DJANGO_EASY_AUDIT_WATCH_REQUEST_EVENTS = False
Expand Down Expand Up @@ -291,4 +291,4 @@
'joboffers.publishers.twitter.TwitterPublisher'
]

DEFAULT_AUTO_FIELD = "django.db.models.AutoField"
DEFAULT_AUTO_FIELD = "django.db.models.AutoField"

0 comments on commit 09b7b62

Please sign in to comment.