Skip to content

Commit

Permalink
Merge pull request #1238 from jelmer/fix-typing
Browse files Browse the repository at this point in the history
Fix typing on pythn 3.7
  • Loading branch information
jelmer authored Nov 27, 2023
2 parents a946ece + 359a70e commit d8fc586
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dulwich/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -1900,7 +1900,7 @@ def default_urllib3_manager(
proxy_server_url = urlparse(proxy_server)
if proxy_server_url.username is not None:
proxy_headers = urllib3.make_headers(
proxy_basic_auth=f"{proxy_server_url.username}:{proxy_server_url.password or ''}"
proxy_basic_auth=f"{proxy_server_url.username}:{proxy_server_url.password or ''}" # type: ignore
)
else:
proxy_headers = {}
Expand Down

0 comments on commit d8fc586

Please sign in to comment.