1
0
Fork 0
mirror of synced 2024-05-18 11:32:50 +12:00

Remove some unused imports

This commit is contained in:
loathingKernel 2024-01-20 17:11:41 +02:00
parent 8df9b08e7e
commit e8e4ed739b
2 changed files with 3 additions and 4 deletions

View file

@ -1,5 +1,5 @@
from PyQt5.QtCore import pyqtSignal
from PyQt5.QtWidgets import QLabel, QVBoxLayout, QLayout, QGroupBox
from PyQt5.QtWidgets import QVBoxLayout, QGroupBox
from rare.models.game import RareGame
from rare.models.install import SelectiveDownloadsModel

View file

@ -4,12 +4,11 @@ import shutil
from logging import getLogger
from typing import Optional, Tuple
from PyQt5.QtCore import pyqtSignal, QSize, Qt, QMimeData, pyqtSlot, QCoreApplication
from PyQt5.QtCore import pyqtSignal, QSize, Qt, QMimeData, pyqtSlot
from PyQt5.QtGui import QDrag, QDropEvent, QDragEnterEvent, QDragMoveEvent, QFont, QMouseEvent, QShowEvent
from PyQt5.QtWidgets import (
QHBoxLayout,
QLabel,
QInputDialog,
QFrame,
QMessageBox,
QSizePolicy,
@ -17,7 +16,7 @@ from PyQt5.QtWidgets import (
QScrollArea,
QAction,
QToolButton,
QMenu, QDialog, QStackedWidget, QPushButton, QLineEdit, QVBoxLayout,
QMenu, QStackedWidget, QPushButton, QLineEdit, QVBoxLayout,
)
from rare.models.wrapper import Wrapper