Skip to content

Commit

Permalink
fix #504
Browse files Browse the repository at this point in the history
  • Loading branch information
sigma67 committed Jan 6, 2024
1 parent 0699e7e commit 2c810be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ytmusicapi/ytmusic.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import time
from contextlib import suppress
from functools import partial
from typing import Dict, Optional
from typing import Dict, Optional, Union

import requests
from requests import Response
Expand Down Expand Up @@ -41,7 +41,7 @@
class YTMusicBase:
def __init__(
self,
auth: Optional[str | Dict] = None,
auth: Optional[Union[str, Dict]] = None,
user: Optional[str] = None,
requests_session=True,
proxies: Optional[Dict[str, str]] = None,
Expand Down

0 comments on commit 2c810be

Please sign in to comment.