Skip to content

Commit

Permalink
Formatting changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Silarn committed May 7, 2023
1 parent 0db05ac commit 18e71ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions load.py
Original file line number Diff line number Diff line change
Expand Up @@ -911,7 +911,7 @@ def get_bodies_summary(bodies: dict[str, PlanetData], focused: bool = False) ->
this.formatter.format_credit_range(min_val, max_val))
if this.focus_breakdown.get():
for species in all_species:
detail_text += ' {}{} - {}\n'.format(
detail_text += ' {}{}: {}\n'.format(
species[0],
f' - {species[1]}' if species[1] else '',
this.formatter.format_credits(species[2])
Expand All @@ -931,7 +931,7 @@ def get_bodies_summary(bodies: dict[str, PlanetData], focused: bool = False) ->
)
if this.focus_breakdown.get():
for species in values[2]:
detail_text += ' {}{}{}\n'.format(
detail_text += ' {}{}: {}\n'.format(
species[0],
f' - {species[1]}' if species[1] else '',
this.formatter.format_credits(species[2])
Expand Down

0 comments on commit 18e71ed

Please sign in to comment.