From 48e73e302ee08cab6ccc4714f40397e852d6fd2f Mon Sep 17 00:00:00 2001 From: Jose Daniel Lara Date: Tue, 24 Sep 2024 13:47:58 -0600 Subject: [PATCH] fix function call --- src/utils/file_utils.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils/file_utils.jl b/src/utils/file_utils.jl index 8ee977d89..ce219a488 100644 --- a/src/utils/file_utils.jl +++ b/src/utils/file_utils.jl @@ -3,7 +3,7 @@ Return a decoded JSON file. """ function read_json(filename::AbstractString) open(filename, "r") do io - JSON3.parse(io) + JSON3.read(io) end end @@ -28,7 +28,7 @@ end function read_file_hashes(path) data = open(joinpath(path, IS.HASH_FILENAME), "r") do io - JSON3.parse(io) + JSON3.read(io) end return data["files"]