This commit is contained in:
2022-08-28 09:34:09 +02:00
parent a4052bb43e
commit 554220148f
8 changed files with 4 additions and 18 deletions

View File

@@ -1,6 +1,6 @@
from typing import Callable
from PySide6.QtGui import QAction, QIcon
from PySide6.QtGui import QAction
from PySide6.QtWidgets import QMenu, QPushButton, QWidget
from src.ui.icon import Icon

View File

@@ -1,8 +1,5 @@
from abc import abstractmethod
from typing import List, BinaryIO
from src.ui.bigtext.line import Line
from typing import BinaryIO
class PreProcessLinesHook:

View File

@@ -1,4 +1,4 @@
from typing import List, Optional, BinaryIO
from typing import Optional, BinaryIO
from src.plugins.logfile.preprocesslineshook import PreProcessLinesHook
from src.ui.bigtext.line import Line