Skip to content

Commit

Permalink
(core) tiny fix for print color
Browse files Browse the repository at this point in the history
  • Loading branch information
amkrajewski authored Jul 17, 2024
1 parent 6c778f0 commit b0463a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pysipfenn/core/pysipfenn.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ def updateModelAvailability(self) -> None:
print(f"{Style.DIM}{netName}{Style.RESET_ALL}")
except UnicodeEncodeError:
# Fallback to ASCII characters if Unicode encoding fails
print(f"{Fore.GREEN}x {netName}{Style.RESET_ALL}")
print(f"{Fore.DIM}x {netName}{Style.RESET_ALL}")
self.network_list_available = detectedNets

def downloadModels(self, network: str = 'all') -> None:
Expand Down

0 comments on commit b0463a6

Please sign in to comment.