Skip to content

Commit

Permalink
Fix 'AnsiFore' object has no attribute 'DIM'
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardonpa authored and amkrajewski committed Nov 15, 2024
1 parent f4b4b15 commit f446b35
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.DIM}x {netName}{Style.RESET_ALL}")
print(f"{Style.DIM}x {netName}{Style.RESET_ALL}")
self.network_list_available = detectedNets

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

0 comments on commit f446b35

Please sign in to comment.