Skip to content
Snippets Groups Projects
Verified Commit 1377bdaf authored by Ernesto Rico Schmidt's avatar Ernesto Rico Schmidt
Browse files

style: apply isort & black

parent e7a1ed78
No related branches found
No related tags found
No related merge requests found
Pipeline #8862 passed
Pipeline: aura-tests

#8863

    # Generated by Django 4.2.18 on 2025-01-22 19:15
    from django.db import migrations, models
    import django.db.models.deletion
    from django.db import migrations, models
    class Migration(migrations.Migration):
    ......
    ......@@ -625,9 +625,7 @@ class Media(models.Model):
    created_by = models.CharField(max_length=150, default="root")
    description = models.TextField(blank=True)
    playout_mode = models.CharField(blank=True, null=False, default="linear", max_length=8)
    show = models.ForeignKey(
    "Show", null=False, on_delete=models.CASCADE, related_name="media"
    )
    show = models.ForeignKey("Show", null=False, on_delete=models.CASCADE, related_name="media")
    updated_at = models.DateTimeField(auto_now=True, blank=True, null=True)
    updated_by = models.CharField(blank=True, default="", max_length=150)
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Finish editing this message first!
    Please register or to comment