remove print

This commit is contained in:
Will McGugan 2019-11-16 14:24:43 +00:00
parent 62a4aaadeb
commit 3ddaaa3cba
1 changed files with 0 additions and 2 deletions

View File

@ -175,9 +175,7 @@ class Style:
f"unknown word {original_word!r} in style {style_definition!r}" f"unknown word {original_word!r} in style {style_definition!r}"
) )
color = word color = word
print(attributes)
style = Style(name, color=color, back=back, **attributes) style = Style(name, color=color, back=back, **attributes)
print("--", style)
return style return style
@classmethod @classmethod