File tree 4 files changed +6
-4
lines changed
4 files changed +6
-4
lines changed Original file line number Diff line number Diff line change
1
+ import sys
1
2
from django .contrib import admin
2
3
3
4
from tests .examples .models import (
Original file line number Diff line number Diff line change
1
+ import sys
1
2
from .mapbox import Map
2
3
from .strict import StrictExample
3
4
from .no_coerce import NoCoerceExample
12
13
from .gnss_vanilla import GNSSReceiverBasic
13
14
from .equivalency import EquivalencyExample
14
15
from .extern import ExternalChoices
15
- from .text_choices import TextChoicesExample
16
16
from .flag_howto import Group
17
+ from .text_choices import TextChoicesExample
Original file line number Diff line number Diff line change 1
- from enum import StrEnum
1
+ from enum import Enum
2
2
from django .db import models
3
3
from django_enum import EnumField
4
4
5
5
6
6
class ExternalChoices (models .Model ):
7
7
8
- class TextEnum (StrEnum ):
8
+ class TextEnum (str , Enum ):
9
9
10
10
VALUE0 = 'V0'
11
11
VALUE1 = 'V1'
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ class Color(TextChoices):
26
26
# to make it case-insensitive we can override the property
27
27
# and mark it like this:
28
28
@symmetric (case_fold = True )
29
- @models . enums . enum_property
29
+ @property
30
30
def label (self ) -> str :
31
31
return self ._label_
32
32
You can’t perform that action at this time.
0 commit comments