Skip to content

Commit

Permalink
chore: Add type annotation to satisfy linter
Browse files Browse the repository at this point in the history
  • Loading branch information
jennifer-richards committed Mar 15, 2023
1 parent 8107569 commit 3fbcb1e
Showing 1 changed file with 2 additions and 1 deletion.
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

0 comments on commit 3fbcb1e

Please sign in to comment.