Fix typing issue

This commit is contained in:
zandercymatics 2023-12-27 09:35:23 -07:00
parent 7a534bb774
commit c5376d46da
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7

View file

@ -1,6 +1,6 @@
"""Permissions-related mixin classes."""
from typing import List
from typing import List, Tuple
from django.contrib.auth.mixins import PermissionRequiredMixin
from registrar.models import (
@ -22,7 +22,7 @@ class OrderableFieldsMixin:
"""
custom_sort_name_prefix = "get_sortable_"
orderable_fk_fields: List[(str, List[str])] = []
orderable_fk_fields: List[Tuple[str, List[str]]] = []
def __new__(cls, *args, **kwargs):
"""