Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Add absent iesg 0001_initial.py migration#5336

Merged
Prev Previous commit
chore: Add type annotation to satisfy linter
  • Loading branch information
jennifer-richards committed Mar 15, 2023
commit 3fbcb1e01ed196706101147fe31ae491b085a26e
3 changes: 2 additions & 1 deletion ietf/iesg/migrations/0001_initial.py
@@ -1,5 +1,6 @@
# Generated by Django 2.2.28 on 2023-03-14 16:10

from typing import List, Tuple
from django.db import migrations, models
import ietf.iesg.models

Expand All @@ -8,7 +9,7 @@ class Migration(migrations.Migration):

initial = True

dependencies = [
dependencies: List[Tuple[str]] = [
]

operations = [
Expand Down