10 lines
229 B
Python
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
|