Skip to content

Commit

Permalink
Changed color to improve terminal support
Browse files Browse the repository at this point in the history
  • Loading branch information
LeagueOfPoro committed Jan 18, 2023
1 parent 8f85206 commit e421e92
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion FarmThread.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ def run(self):
liveMatchesStatus = []
for m in self.browser.liveMatches.values():
status = dropsAvailable.get(m.league, False)
liveMatchesStatus.append(f"{'[green_yellow]' if status else '[orange1]'}{m.league}{'[/]'}")
liveMatchesStatus.append(f"{'[green1]' if status else '[orange1]'}{m.league}{'[/]'}")
self.log.debug(f"{', '.join(liveMatchesStatus)}")
liveMatchesMsg = f"{', '.join(liveMatchesStatus)}"
else:
liveMatchesMsg = "None"
Expand Down

0 comments on commit e421e92

Please sign in to comment.