Browse Source

fix(terminology): use the "Object" term

instead of "Planet" in the text format output
tags/v0.3.0
Jérôme Deuchnord 5 years ago
parent
commit
e21f6327f4
No known key found for this signature in database GPG Key ID: BC6F3C345B7D33B0
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      kosmorrolib/dumper.py

+ 1
- 1
kosmorrolib/dumper.py View File

@@ -95,7 +95,7 @@ class TextDumper(Dumper):


data.append([name, planet_rise, planet_culmination, planet_set]) 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',)) stralign='center', colalign=('left',))


@staticmethod @staticmethod


Loading…
Cancel
Save