From 6983983e58ebba2fc91174c7f54033d16b018f4b Mon Sep 17 00:00:00 2001 From: starnakin Date: Wed, 17 Jan 2024 19:05:50 +0100 Subject: [PATCH] accounts: loggout: test: remove useless var --- accounts/tests/logout.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/accounts/tests/logout.py b/accounts/tests/logout.py index 699d27e..3562eab 100644 --- a/accounts/tests/logout.py +++ b/accounts/tests/logout.py @@ -13,5 +13,5 @@ class LoginTest(TestCase): self.client.login() def test_normal_logout(self): - response: HttpResponse = self.client.post(self.url) + self.client.post(self.url) self.assertNotIn('_auth_user_id', self.client.session)