Skip to content

Commit fb2e1f4

Browse files
committed
Silence a few missing imports
1 parent 9dbab86 commit fb2e1f4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Diff for: polls/admin.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from django.contrib import admin
1+
from django.contrib import admin # type: ignore
22

33
from .models import Question
44

Diff for: polls/migrations/0001_initial.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
from __future__ import unicode_literals
44
from typing import Tuple, List
55

6-
from django.db import migrations, models
7-
import django.db.models.deletion
6+
from django.db import migrations, models # type: ignore
7+
import django.db.models.deletion # type: ignore
88

99

1010
class Migration(migrations.Migration):

0 commit comments

Comments
 (0)