Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix(terminology): use the "Object" term
instead of "Planet" in the text format output
  • Loading branch information
Jérôme Deuchnord committed Dec 1, 2019
1 parent 9c56b86 commit e21f632
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kosmorrolib/dumper.py
Expand Up @@ -95,7 +95,7 @@ def get_asters(asters: [Object]) -> str:

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
Expand Down

0 comments on commit e21f632

Please sign in to comment.