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 333f042 commit 4638701Copy full SHA for 4638701
pipenv/project.py
@@ -226,12 +226,13 @@ def _lockfile(self):
226
pfile = pipfile.load(self.pipfile_location)
227
lockfile = json.loads(pfile.lock())
228
229
- for section in ('default', 'develop'):
230
- lock_section = lockfile.get(section, {})
+ # We may need this later...
+ # for section in ('default', 'develop'):
231
+ # lock_section = lockfile.get(section, {})
232
- for key in list(lock_section.keys()):
233
- norm_key = pep423_name(key)
234
- lockfile[section][norm_key] = lock_section.pop(key)
+ # for key in list(lock_section.keys()):
+ # norm_key = pep423_name(key)
235
+ # lockfile[section][norm_key] = lock_section.pop(key)
236
237
return lockfile
238
0 commit comments