| 123456789101112131415161718192021222324 | import sysimport osfrom .handler import handlerclass stderr_handler(handler):    """    That handler simple put logs into stderr.    """    def add(self, content: str) -> None:        """        That put contewnt as new line in stderr.                Parameters        ----------        content : str            Content to write as new line.        """        sys.stderr.write(content + os.linesep)
 |