Skip to content

Commit 2164049

Browse files
author
Jacek Szemplinski
committed
Fix CircleCI errors.
1 parent 2278d3f commit 2164049

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

app/account/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
from app.account.views import account
1+
from app.account.views import account # noqa

app/account/forms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def validate_email(self, field):
4747
if User.query.filter_by(email=field.data).first():
4848
raise ValidationError('Email already registered. (Did you mean to '
4949
'<a href="{}">log in</a> instead?)'.format(
50-
url_for('account.login')))
50+
url_for('account.login')))
5151

5252

5353
class RequestResetPasswordForm(Form):

app/main/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
from app.main import errors # noqa
2-
from app.main.views import main
2+
from app.main.views import main # noqa

0 commit comments

Comments
 (0)