mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 14:50:16 +00:00
fix(pep425tags): missing package import added
This fixes errors at runtime on Linux ARM: ```py if platform == "linux_armv7l" and not is_linux_armhf() ``` this triggers a check using `os`, which was not imported, resulting in runtime error. Thanks!
This commit is contained in:
@@ -3,6 +3,7 @@ from __future__ import absolute_import
|
||||
|
||||
import distutils.util
|
||||
import logging
|
||||
import os
|
||||
import platform
|
||||
import re
|
||||
import sys
|
||||
|
||||
Reference in New Issue
Block a user