Revert "Require NO_COLOR environment variable to be non-empty to disable colors"

This reverts commit 01d3a72a0e.
This commit is contained in:
Edgar Geier
2019-07-23 17:39:34 +02:00
parent e82c1e7259
commit df919e6ab5

View File

@@ -48,7 +48,7 @@ def use_color(setting):
if setting not in COLOR_CHOICES:
raise InvalidColorSetting(setting)
if 'NO_COLOR' in os.environ and os.environ['NO_COLOR']:
if 'NO_COLOR' in os.environ:
return False
return (