Lower line-length to default and don't add from __future__ import annotations to everything

This commit is contained in:
Joakim Hellsén 2026-03-09 04:37:54 +01:00
commit 1118c03c1b
Signed by: Joakim Hellsén
SSH key fingerprint: SHA256:/9h/CsExpFp+PRhsfA0xznFx2CGfTT5R/kpuFfUgEQk
46 changed files with 2338 additions and 1085 deletions

View file

@ -1,5 +1,5 @@
# Generated by Django 6.0 on 2026-01-05 20:47
from __future__ import annotations
from django.db import migrations
from django.db import models
@ -8,14 +8,18 @@ from django.db import models
class Migration(migrations.Migration):
"""Alter box_art field to allow null values."""
dependencies = [
("twitch", "0001_initial"),
]
dependencies = [("twitch", "0001_initial")]
operations = [
migrations.AlterField(
model_name="game",
name="box_art",
field=models.URLField(blank=True, default="", max_length=500, null=True, verbose_name="Box art URL"),
field=models.URLField(
blank=True,
default="",
max_length=500,
null=True,
verbose_name="Box art URL",
),
),
]