From e21f6327f4dc7e5a9d46ccd6ca493207064745f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Deuchnord?= Date: Sun, 1 Dec 2019 10:24:23 +0100 Subject: [PATCH] fix(terminology): use the "Object" term instead of "Planet" in the text format output --- kosmorrolib/dumper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kosmorrolib/dumper.py b/kosmorrolib/dumper.py index ec9271a..2b8a6c1 100644 --- a/kosmorrolib/dumper.py +++ b/kosmorrolib/dumper.py @@ -95,7 +95,7 @@ class TextDumper(Dumper): data.append([name, planet_rise, planet_culmination, planet_set]) - return tabulate(data, headers=['Planet', 'Rise time', 'Culmination time', 'Set time'], tablefmt='simple', + return tabulate(data, headers=['Object', 'Rise time', 'Culmination time', 'Set time'], tablefmt='simple', stralign='center', colalign=('left',)) @staticmethod