diff --git a/tests/testapp/tests.py b/tests/testapp/tests.py index 14cca2d..1f171f8 100644 --- a/tests/testapp/tests.py +++ b/tests/testapp/tests.py @@ -1,6 +1,8 @@ # SPDX-FileCopyrightText: 2024-present Luis Saavedra # # SPDX-License-Identifier: BSD-3-Clause +from typing import List + from django.core.exceptions import ImproperlyConfigured from django.urls import URLPattern from rest_framework.decorators import action @@ -16,7 +18,7 @@ class AutoPermissionRequiredMixinTests(APITestCase, URLPatternsTestCase): - urlpatterns: list[URLPattern] = [] + urlpatterns: List[URLPattern] = [] @classmethod def setUpClass(cls):