Skip to content

Commit

Permalink
mypy (py 3.8)
Browse files Browse the repository at this point in the history
  • Loading branch information
ric-evans committed Jun 27, 2024
1 parent 3aa1b2c commit e41ea07
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions rest_tools/utils/auth.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
"""auth.py."""


# fmt:off

import json
import logging
import time
from typing import Dict, Optional, Union
from typing import Dict, List, Optional, Union

import jwt
import requests
Expand Down Expand Up @@ -132,7 +131,7 @@ class OpenIDAuth(_AuthValidate):
def __init__(
self,
url: str,
provider_info: Optional[Dict[str, Union[str, list[str]]]] = None,
provider_info: Optional[Dict[str, Union[str, List[str]]]] = None,
**kwargs,
):
super().__init__(**kwargs)
Expand Down

0 comments on commit e41ea07

Please sign in to comment.