This commit is contained in:
2022-02-22 19:47:40 +01:00
parent b81dadf8f3
commit 1f9ca04e23
6 changed files with 1 additions and 8 deletions

View File

@@ -1,5 +1,4 @@
import gettext
import os
from pathlib import Path
from src.pluginregistry import PluginRegistry

View File

@@ -1,5 +1,3 @@
from PySide6.QtCore import QObject
class PluginBase():
def __init__(self):

View File

@@ -6,7 +6,7 @@ from typing import Optional, Callable
from PySide6.QtCore import QRunnable, QThreadPool, Signal
from PySide6.QtGui import QIcon
from PySide6.QtWidgets import QWidget, QVBoxLayout, QHBoxLayout, QLineEdit, QCheckBox, QPushButton, QComboBox, \
from PySide6.QtWidgets import QWidget, QVBoxLayout, QHBoxLayout, QCheckBox, QPushButton, QComboBox, \
QSizePolicy
from src.ui.bigtext.bigtext import BigText

View File

@@ -1,5 +1,3 @@
from typing import Callable
from PySide6.QtCore import Qt
from src.pluginbase import PluginBase

View File

@@ -11,7 +11,6 @@ from PySide6.QtGui import *
from PySide6.QtGui import QMouseEvent
from PySide6.QtWidgets import *
import constants
from src.ui.ScaledScrollBar import ScaledScrollBar
from src.ui.bigtext.highlight_selection import HighlightSelection
from src.ui.bigtext.highlighted_range import HighlightedRange

View File

@@ -1,5 +1,4 @@
from typing import Optional
from PySide6.QtWidgets import QWidget, QTabWidget, QVBoxLayout
from src.pluginregistry import PluginRegistry