Skip to content

Commit 94cbeaf

Browse files
committed
remove unnecessary imports
1 parent 1853ac5 commit 94cbeaf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

django_enum/forms.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
"""Enumeration support for django model forms"""
2-
from typing import Any, Dict, Iterable, List, Tuple, Type, Union
2+
from typing import Any, Iterable, List, Tuple, Type, Union
33

44
from django.core.exceptions import ValidationError
55
from django.db.models import Choices
66
from django.forms.fields import ChoiceField
7-
from django.forms.widgets import Select, Widget
7+
from django.forms.widgets import Select
88

99
# pylint: disable=R0801
1010

0 commit comments

Comments
 (0)