This commit is contained in:
Timothy J. Baek 2024-09-05 16:13:40 +02:00
parent fa786c8e05
commit 8a411decac
1 changed files with 3 additions and 1 deletions

View File

@ -97,7 +97,9 @@ except importlib.metadata.PackageNotFoundError:
PIP_INSTALL = (
os.environ.get("PIP_INSTALL") if os.environ.get("PIP_INSTALL") else PIP_INSTALL
os.environ.get("PIP_INSTALL", "False").lower() == "true"
if os.environ.get("PIP_INSTALL")
else PIP_INSTALL
)
if PIP_INSTALL: