Skip to content

Commit

Permalink
fix mypy python3.8 compat
Browse files Browse the repository at this point in the history
  • Loading branch information
lsaavedr committed Oct 24, 2024
1 parent 092c16f commit 3728c9c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/testapp/tests.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# SPDX-FileCopyrightText: 2024-present Luis Saavedra <[email protected]>
#
# 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
Expand All @@ -16,7 +18,7 @@


class AutoPermissionRequiredMixinTests(APITestCase, URLPatternsTestCase):
urlpatterns: list[URLPattern] = []
urlpatterns: List[URLPattern] = []

@classmethod
def setUpClass(cls):
Expand Down

0 comments on commit 3728c9c

Please sign in to comment.