Skip to content

Commit

Permalink
fix mypy python3.8 compat 2
Browse files Browse the repository at this point in the history
  • Loading branch information
lsaavedr committed Oct 24, 2024
1 parent 3728c9c commit 419c28d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/testapp/migrations/0001_initial.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Generated by Django 5.1.2 on 2024-10-24 01:30

from typing import List
import rules.contrib.models
from django.db import migrations, models

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

initial = True

dependencies: list[tuple[str, str]] = []
dependencies: List[tuple[str, str]] = []

operations = [
migrations.CreateModel(
Expand Down

0 comments on commit 419c28d

Please sign in to comment.