From cad1cd96af70d6b7a171f95e89d68364940dfb24 Mon Sep 17 00:00:00 2001 From: Daniel Pozsar Date: Mon, 11 Nov 2024 12:17:07 +0100 Subject: [PATCH] corrected pickle read in --- src/grogupy/io.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/grogupy/io.py b/src/grogupy/io.py index 5e2aea0..f290145 100644 --- a/src/grogupy/io.py +++ b/src/grogupy/io.py @@ -210,7 +210,7 @@ def load_pickle(infile): # open and read file with open(infile, "wb") as input_file: - data = load(data, input_file) + data = load(input_file) return data