Skip to content
This repository has been archived by the owner on Aug 10, 2023. It is now read-only.

Commit

Permalink
support py3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Antonio committed May 22, 2023
1 parent d384b16 commit 76a39eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/BingImageCreator.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import pkg_resources
import regex
import requests
from typing import Union
from typing import Union, List, Dict

if os.environ.get("BING_URL") == None:
BING_URL = "https://www.bing.com"
Expand Down Expand Up @@ -66,7 +66,7 @@ def __init__(
auth_cookie: str,
debug_file: Union[str, None] = None,
quiet: bool = False,
all_cookies: list[dict] = None,
all_cookies: List[Dict] = None,
) -> None:
self.session: requests.Session = requests.Session()
self.session.headers = HEADERS
Expand Down

0 comments on commit 76a39eb

Please sign in to comment.