Skip to content

Commit

Permalink
Fix _parse_basic_auth return type
Browse files Browse the repository at this point in the history
  • Loading branch information
cquick01 committed Nov 9, 2023
1 parent 2e0519a commit 0dc5c6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/proxpi/_cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ def __getitem__(self, k: str) -> threading.Lock:
return self._locks[k]


def _parse_basic_auth(url: str) -> tuple[str, str]:
def _parse_basic_auth(url: str) -> t.Tuple[str, str]:
"""Parse HTTP Basic username and password from URL.
Args:
Expand Down

0 comments on commit 0dc5c6e

Please sign in to comment.