Skip to content

Commit db6a0cf

Browse files
committed
run ruff
1 parent e908d23 commit db6a0cf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

django_enum/choices.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ class TextChoices(
6868

6969
def __hash__(self):
7070
return DjangoTextChoices.__hash__(self)
71-
71+
7272
label: str
7373

7474
class IntegerChoices(
@@ -81,7 +81,7 @@ class IntegerChoices(
8181

8282
def __hash__(self):
8383
return DjangoIntegerChoices.__hash__(self)
84-
84+
8585
label: str
8686

8787
class FloatChoices(
@@ -118,7 +118,7 @@ class FlagChoices( # type: ignore
118118

119119
def __hash__(self):
120120
return enum.IntFlag.__hash__(self)
121-
121+
122122
label: str
123123

124124
except (ImportError, ModuleNotFoundError):

0 commit comments

Comments
 (0)