From 410c86629ab2e71a15d1ae6e4f6359195cf7a333 Mon Sep 17 00:00:00 2001 From: Fabian Joswig Date: Tue, 2 Nov 2021 13:00:23 +0000 Subject: [PATCH] Corr repr adjusted --- pyerrors/correlators.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyerrors/correlators.py b/pyerrors/correlators.py index a0c09264..635a9b57 100644 --- a/pyerrors/correlators.py +++ b/pyerrors/correlators.py @@ -498,7 +498,7 @@ class Corr: else: content_string += str(i + range[0]) for element in sub_corr: - content_string += '\t' + str(element) + content_string += '\t' + ' ' * int(element >= 0) + str(element) content_string += '\n' return content_string