Fixes: no_underscore_before_number to False

This commit is contained in:
Egor Pavlovich Gorbunov 2025-06-08 14:58:22 +03:00
parent 1ab95e9fd3
commit f97d84ae58

View file

@ -24,7 +24,7 @@ REST_FRAMEWORK = {
"DEFAULT_SCHEMA_CLASS": "drf_spectacular.generators.AutoSchema",
"DEFAULT_PERMISSION_CLASSES": ("rest_framework.permissions.AllowAny",),
"JSON_UNDERSCOREIZE": {
"no_underscore_before_number": True,
"no_underscore_before_number": False,
},
}