mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-07-26 04:28:39 +02:00
Fix typing issue
This commit is contained in:
parent
7a534bb774
commit
c5376d46da
1 changed files with 2 additions and 2 deletions
|
@ -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):
|
||||
"""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue