From 76489c947bf4a39693248a422a9749b4f3d8ee66 Mon Sep 17 00:00:00 2001 From: s-weigand Date: Fri, 13 Aug 2021 13:24:29 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=8C=20CLI=20dedent=20pluginlist=20outp?= =?UTF-8?q?ut?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- glotaran/cli/commands/pluginlist.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/glotaran/cli/commands/pluginlist.py b/glotaran/cli/commands/pluginlist.py index 1ab81204d..e970de91b 100644 --- a/glotaran/cli/commands/pluginlist.py +++ b/glotaran/cli/commands/pluginlist.py @@ -1,3 +1,5 @@ +from textwrap import dedent + import click from glotaran.plugin_system.data_io_registration import known_data_formats @@ -8,11 +10,13 @@ def plugin_list_cmd(): """Prints a list of installed plugins.""" - output = """ - Installed Glotaran Plugins: + output = dedent( + """ + Installed Glotaran Plugins: - Megacomplex Models: - """ + Megacomplex Models: + """ + ) output += "\n" for name in known_megacomplex_names():