remove appveyor specific code paths (#3071)

This commit is contained in:
Christian Moritz 2019-10-06 03:19:00 +02:00 committed by Ryan Dahl
parent 351d40e51c
commit 33e3ff5de8
2 changed files with 0 additions and 5 deletions

View file

@ -236,9 +236,6 @@ def parse_exit_code(s):
def enable_ansi_colors():
if os.name != 'nt':
return True # On non-windows platforms this just works.
elif "CI" in os.environ:
return True # Ansi escape codes work out of the box on Appveyor.
return enable_ansi_colors_win10()