Update colors.py

This commit is contained in:
Richard Mwewa
2022-04-11 12:59:10 +02:00
committed by GitHub
parent 2afac6c0d4
commit 315cb7ec6f

View File

@@ -3,7 +3,7 @@ import sys
# Colors will be unavailable on non-linux machines
colors = True
machine = sys.platform
if machine.lower().startswith(("os", "win", "darwin")):
if machine.lower().startswith(("os", "win", "darwin","ios")):
colors = False
if not colors: