From 5cd845e55dd4b5af10fcadb078c6843faf7a7b63 Mon Sep 17 00:00:00 2001 From: simon Date: Fri, 21 Apr 2023 16:09:12 +0700 Subject: [PATCH] fix type compatibility --- tubearchivist/api/views.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tubearchivist/api/views.py b/tubearchivist/api/views.py index 85b44b0..22de8b7 100644 --- a/tubearchivist/api/views.py +++ b/tubearchivist/api/views.py @@ -38,8 +38,8 @@ class ApiBaseView(APIView): authentication_classes = [SessionAuthentication, TokenAuthentication] permission_classes = [IsAuthenticated] - search_base = False - data = False + search_base = "" + data = "" def __init__(self): super().__init__()