From f74793b76526d1a10e2c96c9745b199a31f67f99 Mon Sep 17 00:00:00 2001 From: jkuhl-uni Date: Tue, 20 Dec 2022 13:36:08 +0100 Subject: [PATCH] Add docstring to read_ms5_xsf method --- pyerrors/input/openQCD.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pyerrors/input/openQCD.py b/pyerrors/input/openQCD.py index 50d1255e..e0902569 100644 --- a/pyerrors/input/openQCD.py +++ b/pyerrors/input/openQCD.py @@ -1039,7 +1039,7 @@ def read_ms5_xsf(path, prefix, qc, corr): break asascii=struct.unpack(packstr, cnfgt) cnfg = asascii[0] - print(cnfg) + #print(cnfg) if not corr in placesBB: tmpcorr = asascii[1+2*tmax*placesBI.index(corr):1+2*tmax*placesBI.index(corr)+2*tmax] @@ -1052,5 +1052,6 @@ def read_ms5_xsf(path, prefix, qc, corr): for i in range(len(tmpcorr)): corrres[i%2].append(tmpcorr[i]) - print(corrres) + #print(corrres) +