monitor: small whites pace fix

Extra line between class comment and `__init__`.
This commit is contained in:
Christian Kellner 2022-05-06 15:12:45 +02:00 committed by Achilleas Koutsou
parent 1bcbf3a2d2
commit b94b90b8e2

View file

@ -25,6 +25,7 @@ BOLD = "\033[1m"
class TextWriter:
"""Helper class for writing text to file descriptors"""
def __init__(self, fd: int):
self.fd = fd
self.isatty = os.isatty(fd)