fix type compatibility

This commit is contained in:
simon 2023-04-21 16:09:12 +07:00
parent 3a091ac287
commit 5cd845e55d
No known key found for this signature in database
GPG Key ID: 2C15AA5E89985DD4
1 changed files with 2 additions and 2 deletions

View File

@ -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__()