Revert "Don't use color if NO_COLOR environment variable is set"

This reverts commit 1bf9ff7493.
This commit is contained in:
Edgar Geier
2019-07-23 17:40:08 +02:00
parent df919e6ab5
commit c75d8939f8

View File

@@ -48,9 +48,6 @@ def use_color(setting):
if setting not in COLOR_CHOICES:
raise InvalidColorSetting(setting)
if 'NO_COLOR' in os.environ:
return False
return (
setting == 'always' or
(setting == 'auto' and sys.stdout.isatty() and terminal_supports_color)