Skip to content

Commit f446b35

Browse files
ricardonpaamkrajewski
authored andcommitted
Fix 'AnsiFore' object has no attribute 'DIM'
1 parent f4b4b15 commit f446b35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pysipfenn/core/pysipfenn.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ def updateModelAvailability(self) -> None:
221221
print(f"{Style.DIM}{netName}{Style.RESET_ALL}")
222222
except UnicodeEncodeError:
223223
# Fallback to ASCII characters if Unicode encoding fails
224-
print(f"{Fore.DIM}x {netName}{Style.RESET_ALL}")
224+
print(f"{Style.DIM}x {netName}{Style.RESET_ALL}")
225225
self.network_list_available = detectedNets
226226

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

0 commit comments

Comments
 (0)