From 04acbc4c3b10438191bb8c6a63da6b61d7ae7b24 Mon Sep 17 00:00:00 2001 From: fjosw Date: Mon, 20 Jun 2022 14:52:02 +0000 Subject: [PATCH] Documentation updated --- docs/pyerrors/correlators.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/pyerrors/correlators.html b/docs/pyerrors/correlators.html index cef7fac9..2cfd37dc 100644 --- a/docs/pyerrors/correlators.html +++ b/docs/pyerrors/correlators.html @@ -1060,7 +1060,7 @@ 846 847 if save: 848 if isinstance(save, str): - 849 fig.savefig(save) + 849 fig.savefig(save, bbox_inches='tight') 850 else: 851 raise Exception("'save' has to be a string.") 852 @@ -2321,7 +2321,7 @@ 847 848 if save: 849 if isinstance(save, str): - 850 fig.savefig(save) + 850 fig.savefig(save, bbox_inches='tight') 851 else: 852 raise Exception("'save' has to be a string.") 853 @@ -4130,7 +4130,7 @@ apply gamma_method with default parameters to the Corr. Defaults to None 847 848 if save: 849 if isinstance(save, str): -850 fig.savefig(save) +850 fig.savefig(save, bbox_inches='tight') 851 else: 852 raise Exception("'save' has to be a string.")