Add typing to empty list of operations

This commit is contained in:
sabaimran
2025-01-21 11:56:52 -08:00
parent e3e93e091d
commit e518626027

View File

@@ -1,4 +1,5 @@
# Generated by Django 5.0.10 on 2025-01-21 18:42
from typing import List
from django.db import migrations
@@ -9,4 +10,4 @@ class Migration(migrations.Migration):
("database", "0081_merge_20250120_1633"),
]
operations = []
operations: List[str] = []