Skip to content

Commit f4d6b7d

Browse files
committed
Setting background to black
1 parent bb3f19d commit f4d6b7d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

timer_py/printer.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
class Printer:
55
def error(self, text: str, tag: str = None) -> None:
66
print_color(
7-
text, tag=tag, tag_color="red", color="white"
7+
text, tag=tag, tag_color="red", color="white", background="black"
88
)
99

1010
def info(self, text: str, tag: str = None) -> None:
1111
print_color(
12-
text, tag=tag, tag_color="green", color="white"
12+
text, tag=tag, tag_color="green", color="white", background="black"
1313
)

0 commit comments

Comments
 (0)