|
12 | 12 |
|
13 | 13 | from PySide6.QtWidgets import ( |
14 | 14 | QMainWindow, QApplication, QWidget, QVBoxLayout, QHBoxLayout, |
15 | | - QTabWidget, QMenuBar, QMenu, QToolBar, QStatusBar, QSplitter, |
16 | | - QLabel, QPushButton, QMessageBox, QFileDialog, QDockWidget, QInputDialog |
| 15 | + QTabWidget, QToolBar, QStatusBar, QSplitter, |
| 16 | + QLabel, QPushButton, QMessageBox, QFileDialog, QInputDialog |
17 | 17 | ) |
18 | | -from PySide6.QtCore import Qt, QTimer, QSize, Signal |
19 | | -from PySide6.QtGui import QAction, QFont, QKeySequence, QIcon, QTextCursor |
| 18 | +from PySide6.QtCore import Qt, QSize |
| 19 | +from PySide6.QtGui import QAction, QKeySequence, QIcon, QTextCursor |
20 | 20 |
|
21 | 21 | # Lokale Imports |
22 | 22 | sys.path.insert(0, str(Path(__file__).parent.parent)) |
23 | 23 | from core.project_manager import ProjectManager, ProjectConfig |
24 | | -from core.settings_manager import SettingsManager, get_settings |
25 | | -from core.event_bus import EventBus, EventType, get_event_bus |
| 24 | +from core.settings_manager import get_settings |
| 25 | +from core.event_bus import EventType, get_event_bus |
26 | 26 | from core.workspace_export import export_workspace |
27 | 27 | from modules.editor.code_editor import CodeEditor |
28 | 28 | from modules.analyzer import MethodAnalyzer, AnalysisResult |
|
0 commit comments