corrected pickle read in

class-solution
Daniel Pozsar 2 months ago
parent 32d1f2bb41
commit cad1cd96af

@ -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

Loading…
Cancel
Save