Skip to content

Commit 25b46ab

Browse files
committed
remove TypeAlias
1 parent f98f9a7 commit 25b46ab

File tree

2 files changed

+15
-19
lines changed

2 files changed

+15
-19
lines changed

django_enum/forms.py

+6-19
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,7 @@
33
from copy import copy
44
from decimal import DecimalException
55
from enum import Enum
6-
from typing import (
7-
Any,
8-
Iterable,
9-
List,
10-
Optional,
11-
Protocol,
12-
Sequence,
13-
Tuple,
14-
Type,
15-
TypeAlias,
16-
Union,
17-
)
6+
from typing import Any, Iterable, List, Optional, Protocol, Sequence, Tuple, Type, Union
187

198
from django.core.exceptions import ValidationError
209
from django.db.models import Choices
@@ -33,20 +22,18 @@
3322
]
3423

3524

36-
_SelectChoices: TypeAlias = Iterable[
37-
Union[Tuple[Any, Any], Tuple[str, Iterable[Tuple[Any, Any]]]]
38-
]
25+
_SelectChoices = Iterable[Union[Tuple[Any, Any], Tuple[str, Iterable[Tuple[Any, Any]]]]]
3926

40-
_Choice: TypeAlias = Tuple[Any, Any]
41-
_ChoiceNamedGroup: TypeAlias = Tuple[str, Iterable[_Choice]]
42-
_FieldChoices: TypeAlias = Iterable[_Choice | _ChoiceNamedGroup]
27+
_Choice = Tuple[Any, Any]
28+
_ChoiceNamedGroup = Tuple[str, Iterable[_Choice]]
29+
_FieldChoices = Iterable[_Choice | _ChoiceNamedGroup]
4330

4431

4532
class _ChoicesCallable(Protocol):
4633
def __call__(self) -> _FieldChoices: ...
4734

4835

49-
_ChoicesParameter: TypeAlias = Union[_FieldChoices, _ChoicesCallable]
36+
_ChoicesParameter = Union[_FieldChoices, _ChoicesCallable]
5037

5138

5239
class _CoerceCallable(Protocol):

pyproject.toml

+9
Original file line numberDiff line numberDiff line change
@@ -210,3 +210,12 @@ command_line = "-m pytest --cov=django_enum"
210210
source = [
211211
"django_enum"
212212
]
213+
214+
215+
[tool.pyright]
216+
exclude = [
217+
"django_enum/tests/**/*"
218+
]
219+
include = [
220+
"django_enum"
221+
]

0 commit comments

Comments
 (0)