mirror of
https://github.com/Andre0512/pyhOn.git
synced 2025-05-14 07:04:26 -04:00
Add some type hints
This commit is contained in:
parent
970b94bfa7
commit
e82c14ec99
6 changed files with 177 additions and 97 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue