remove stray println in color serialization (#661)

This commit is contained in:
Nick Lanham 2022-05-22 23:49:10 -07:00 committed by GitHub
parent 9d72c27c20
commit 09ffd70c30
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -240,7 +240,6 @@ impl serde::ser::Serialize for Color {
};
if str == "" {
println!("color: {:?}", self);
match *self {
Color::AnsiValue(value) => {
return serializer.serialize_str(&format!("ansi_({})", value));