Files
krowlog/src/plugins/logfile/preprocesslineshook.py
2022-03-12 09:28:38 +01:00

12 lines
242 B
Python

from abc import abstractmethod
from typing import List, BinaryIO
from src.ui.bigtext.line import Line
class PreProcessLinesHook:
@abstractmethod
def pre_process_line(self, line: str, file_io: BinaryIO) -> str:
return line