Add some type hints

This commit is contained in:
Andre Basche 2023-04-13 23:25:49 +02:00
parent 970b94bfa7
commit e82c14ec99
6 changed files with 177 additions and 97 deletions

View file

@ -4,6 +4,7 @@ import re
import secrets
import urllib
from pprint import pformat
from typing import List, Tuple
from urllib import parse
from urllib.parse import quote
@ -24,7 +25,7 @@ class HonAuth:
self._cognito_token = ""
self._id_token = ""
self._device = device
self._called_urls = []
self._called_urls: List[Tuple[int, str]] = []
@property
def cognito_token(self):