Matthias Bisping 9480d58a8a Refactoring: Move
Move line formatters into their own module
2023-02-01 16:59:33 +01:00

10 lines
229 B
Python

from synthesis.text.line_formatter.line_formatter import LineFormatter
class IdentityLineFormatter(LineFormatter):
def __init__(self):
pass
def __call__(self, lines, last_full):
return lines, last_full