From 6c67b6de28dccfc66ab4043c306bf346671aaf9f Mon Sep 17 00:00:00 2001 From: gulvarol Date: Tue, 16 Jul 2019 15:36:42 +0200 Subject: [PATCH] Print saving fig. --- display_utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/display_utils.py b/display_utils.py index 2a05f5c..2a4b13a 100644 --- a/display_utils.py +++ b/display_utils.py @@ -42,6 +42,7 @@ def display_model( ax.view_init(azim=-90, elev=100) fig.subplots_adjust(left=0, right=1, bottom=0, top=1) if savepath: + print('Saving figure at {}.'.format(savepath)) plt.savefig(savepath, bbox_inches='tight', pad_inches=0) if show: plt.show()