"Optimize Imports" in game & qt-ui

Adjustments made by PyCharm
This commit is contained in:
Raffson
2022-10-24 18:54:41 +02:00
parent ada297d331
commit a736bf9b09
85 changed files with 95 additions and 117 deletions

View File

@@ -1,3 +1,5 @@
from PySide2.QtCore import QTimer
from PySide2.QtGui import QTextCursor
from PySide2.QtWidgets import (
QDialog,
QPlainTextEdit,
@@ -6,14 +8,10 @@ from PySide2.QtWidgets import (
QPushButton,
QLabel,
)
from PySide2.QtGui import QTextCursor
from PySide2.QtCore import QTimer
import qt_ui.uiconstants as CONST
from game.game import Game
from time import sleep
class QNotesWindow(QDialog):
def __init__(self, game: Game):