From 2d7ddfb2044fa785c3d4bcced4cf5cd9b161bb51 Mon Sep 17 00:00:00 2001 From: mortezaei Date: Wed, 24 Sep 2025 16:02:35 +0330 Subject: [PATCH] fix(documentation): correct boolean value casing in API documentation view - Updated the boolean value for "is_active" from lowercase to uppercase to adhere to Python's convention. --- apps/api/views/documentation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/api/views/documentation.py b/apps/api/views/documentation.py index 916650b..7e5f17f 100644 --- a/apps/api/views/documentation.py +++ b/apps/api/views/documentation.py @@ -518,7 +518,7 @@ class CustomAPIDocumentationView(View): "app_type": "google_play", "app_store_downloads": 1500, "google_play_downloads": 23000, - "is_active": true + "is_active": True } ], indent=2) }