Skip to content

Commit

Permalink
Remove Optional type from xmlrpc bool parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
deveshks committed May 20, 2020
1 parent 2fe5d84 commit 65a6152
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pip/_internal/network/xmlrpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from pip._internal.utils.typing import MYPY_CHECK_RUNNING

if MYPY_CHECK_RUNNING:
from typing import Optional, Dict
from typing import Dict
from pip._internal.network.session import PipSession

logger = logging.getLogger(__name__)
Expand All @@ -24,14 +24,14 @@ class PipXmlrpcTransport(xmlrpc_client.Transport):
"""

def __init__(self, index_url, session, use_datetime=False):
# type: (str, PipSession, Optional[bool]) -> None
# type: (str, PipSession, bool) -> None
xmlrpc_client.Transport.__init__(self, use_datetime)
index_parts = urllib_parse.urlparse(index_url)
self._scheme = index_parts.scheme
self._session = session

def request(self, host, handler, request_body, verbose=False):
# type: (str, str, Dict[str, str], Optional[bool]) -> None
# type: (str, str, Dict[str, str], bool) -> None
parts = (self._scheme, host, handler, None, None, None)
url = urllib_parse.urlunparse(parts)
try:
Expand Down

0 comments on commit 65a6152

Please sign in to comment.