From 5c806e06bde29b65debba709dbfd014c7e08dd2c Mon Sep 17 00:00:00 2001 From: Loic Guegan Date: Sun, 17 Dec 2023 16:35:00 +0800 Subject: [PATCH] Minor changes --- esds/debug.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/esds/debug.py b/esds/debug.py index cac433d..5423461 100644 --- a/esds/debug.py +++ b/esds/debug.py @@ -1,6 +1,6 @@ import sys,time,json import numpy as np -import esds +import esds, json def serialize_int64(obj): if isinstance(obj, np.int64): @@ -112,4 +112,7 @@ class Debug: def debug_infos(file): - print("infos") + f=open(file,'r',encoding='utf8') + data=json.loads(f.readline()) + print("Python Version (used during simulation): ", data["python_version"]) + f.close()