Skip to content

Commit

Permalink
(core) replace Unicode cross symbol with plain x for improved Windo…
Browse files Browse the repository at this point in the history
…ws compatibility
  • Loading branch information
amkrajewski committed Feb 17, 2024
1 parent 0a5a90e commit e1be553
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 @@ -207,7 +207,7 @@ def updateModelAvailability(self) -> None:
detectedNets.append(net)
print('✔ ' + netName)
else:
print(' ' + netName)
print('x ' + netName)
self.network_list_available = detectedNets

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

0 comments on commit e1be553

Please sign in to comment.