Closed keturn closed 4 years ago
This fixes Colorful.setup(colormode=terminal.NO_COLORS), which was confusing the falsy value of NO_COLORS with the default argument value of None.
Colorful.setup(colormode=terminal.NO_COLORS)
Consequently, cf.with_setup(colormode=NO_COLORS) should work now.
cf.with_setup(colormode=NO_COLORS)
Thank you 🌮
This fixes
Colorful.setup(colormode=terminal.NO_COLORS)
, which was confusing the falsy value of NO_COLORS with the default argument value of None.Consequently,
cf.with_setup(colormode=NO_COLORS)
should work now.