Skip to content

Commit 073dd3e

Browse files
committed
Fixed flake8 warnings
1 parent 4a56a9e commit 073dd3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rest_auth/tests/test_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ def test_password_reset(self):
225225
self.post(self.login_url, data=payload, status_code=200)
226226

227227
def test_password_reset_with_email_in_different_case(self):
228-
user = get_user_model().objects.create_user(self.USERNAME, self.EMAIL.lower(), self.PASS)
228+
get_user_model().objects.create_user(self.USERNAME, self.EMAIL.lower(), self.PASS)
229229

230230
# call password reset in upper case
231231
mail_count = len(mail.outbox)

0 commit comments

Comments
 (0)