Skip to content
This repository has been archived by the owner on Jun 3, 2022. It is now read-only.

Commit

Permalink
Merge pull request #96 from nellatuulikki/master
Browse files Browse the repository at this point in the history
Small fixes to ui colors
  • Loading branch information
nellatuulikki authored Apr 26, 2022
2 parents d8e870d + 60f1b9f commit 6721282
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ui/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ def print_list_of_tips(self, tips):
ids_of_tips = self.reading_tip_service.get_ids(tips)
tags_of_tips = self.tip_tags_service.get_all_tags_for_multiple_ids(ids_of_tips)

self.io.write(f"{len(tips)} reading tips found:")
self.io.write_green(f"{len(tips)} reading tips found:")

self.table.create_table(tips, tags_of_tips)

Expand Down Expand Up @@ -189,7 +189,7 @@ def exit_app(self):
raise SystemExit()

def print_list_of_tags(self, tags):
self.io.write(f"{len(tags)} tags found:")
self.io.write_green(f"{len(tags)} tags found:")
for tag in tags:
self.print_tags(tag)

Expand Down

0 comments on commit 6721282

Please sign in to comment.