From 8f4e44d0031f0fdaf04401447b6ac18881dfae92 Mon Sep 17 00:00:00 2001 From: Oz N Tiram Date: Tue, 13 Sep 2022 14:47:19 +0200 Subject: [PATCH] Fix usage of plette.Pipfile --- pipenv/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipenv/core.py b/pipenv/core.py index e75f12c0..a21da79c 100644 --- a/pipenv/core.py +++ b/pipenv/core.py @@ -2781,7 +2781,7 @@ def do_check( ) sys.exit(1) # Load the pipfile. - p = plette.Pipfile.load(project.pipfile_location) + p = plette.Pipfile.load(open(project.pipfile_location)) failed = False # Assert each specified requirement. for marker, specifier in p.data["_meta"]["requires"].items():