Skip to content

Commit

Permalink
chore: black
Browse files Browse the repository at this point in the history
  • Loading branch information
rmoesbergen committed Aug 9, 2024
1 parent 4e63ad9 commit eba64c2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion aanmelden/src/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,9 @@ class UserInfo(models.Model):
account_type = models.CharField(max_length=100, default="", null=False)
stripcard_used = models.IntegerField(default=0, null=False)
stripcard_count = models.IntegerField(default=0, null=False)
stripcard_expires = models.DateField(default=timezone.datetime(year=2099, month=1, day=1).date(), null=False)
stripcard_expires = models.DateField(
default=timezone.datetime(year=2099, month=1, day=1).date(), null=False
)

def __str__(self):
return f"User details for {self.user}"
Expand Down

0 comments on commit eba64c2

Please sign in to comment.