diff options
| author | 2020-10-10 20:34:13 +0300 | |
|---|---|---|
| committer | 2020-10-10 20:34:13 +0300 | |
| commit | 74f2131d05fdaa27b841e32f6c2fce2926b60f70 (patch) | |
| tree | b9fd6290eb964c3753fe4c2be956e44f0fbad3d8 | |
| parent | Remove unnecessary newline from user tests (diff) | |
Add trailing comma to infraction types listing
Co-authored-by: Joe Banks <[email protected]>
Diffstat (limited to '')
| -rw-r--r-- | pydis_site/apps/api/models/bot/infraction.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/pydis_site/apps/api/models/bot/infraction.py b/pydis_site/apps/api/models/bot/infraction.py index 5ef3a4ce..60c1e8dd 100644 --- a/pydis_site/apps/api/models/bot/infraction.py +++ b/pydis_site/apps/api/models/bot/infraction.py @@ -16,7 +16,7 @@ class Infraction(ModelReprMixin, models.Model):          ("kick", "Kick"),          ("ban", "Ban"),          ("superstar", "Superstar"), -        ("voice_ban", "Voice Ban") +        ("voice_ban", "Voice Ban"),      )      inserted_at = models.DateTimeField(          default=timezone.now, | 
