Skip to content

Commit

Permalink
⏪ Forgot we still support python 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
SilviaAmAm committed Mar 5, 2024
1 parent 23dea32 commit 0c48e8b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions digid_eherkenning/saml2/eherkenning.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import binascii
from base64 import b64encode
from io import BytesIO
from typing import List, Literal, Union
from typing import List, Literal, Union, Optional
from uuid import uuid4

from django.urls import reverse
Expand Down Expand Up @@ -73,8 +73,8 @@ def xml_datetime(d):

def create_language_elements(
element_name: str,
option_value: dict[str, str] | str | None,
languages: list[str] | None = None,
option_value: Optional[dict[str, str], str],
languages: Optional[list[str]] = None,
) -> list[Element]:
"""
Convert a configuration option into zero or more eHerkenning dienstcatalogus
Expand Down

0 comments on commit 0c48e8b

Please sign in to comment.