From 170b0a47b09d735132bcfdcc9b303397eb03b34b Mon Sep 17 00:00:00 2001 From: Nick Pope Date: Wed, 23 Aug 2023 12:09:28 +0100 Subject: [PATCH] Refs #34233 -- Used @staticmethod with TextChoices._generate_next_value_(). Now that Python 3.10 is the minimum supported version, we can decorate _generate_next_value_() with @staticmethod. It wasn't possible before as Python < 3.10 does not support calling static methods direct from the class body. https://docs.python.org/3/library/enum.html#enum.Enum._generate_next_value_ --- django/db/models/enums.py | 1 + 1 file changed, 1 insertion(+) diff --git a/django/db/models/enums.py b/django/db/models/enums.py index 20e9e77925..24bec6b87b 100644 --- a/django/db/models/enums.py +++ b/django/db/models/enums.py @@ -98,6 +98,7 @@ class IntegerChoices(int, Choices): class TextChoices(str, Choices): """Class for creating enumerated string choices.""" + @staticmethod def _generate_next_value_(name, start, count, last_values): return name