We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d0e027 commit 63ac687Copy full SHA for 63ac687
src/pip/_internal/commands/debug.py
@@ -22,6 +22,7 @@
22
from types import ModuleType
23
from typing import List, Optional, Dict
24
from optparse import Values
25
+ from pip._internal.configuration import Configuration
26
27
logger = logging.getLogger(__name__)
28
@@ -164,9 +165,9 @@ def show_tags(options):
164
165
166
167
def ca_bundle_info(config):
- # type: (Dict[str, str]) -> str
168
+ # type: (Configuration) -> str
169
levels = set()
- for key in config:
170
+ for key, _ in config.items():
171
levels.add(key.split('.')[0])
172
173
if not levels:
0 commit comments