Skip to content

Commit 3f4526e

Browse files
browniebrokealeksihakli
authored andcommitted
chore: revert unrelated stylistic change
1 parent 2fb4c81 commit 3f4526e

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

axes/models.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,7 @@ class Meta:
5353

5454
class AccessLog(AccessBase):
5555
logout_time = models.DateTimeField(_("Logout Time"), null=True, blank=True)
56-
session_hash = models.CharField(
57-
_("Session key hash (sha256)"), default="", blank=True, max_length=64
58-
)
56+
session_hash = models.CharField(_("Session key hash (sha256)"), default="", blank=True, max_length=64)
5957

6058
def __str__(self):
6159
return f"Access Log for {self.username} @ {self.attempt_time}"

0 commit comments

Comments
 (0)