video_player: remove unused QBrush and QApplication imports

This commit is contained in:
pax 2026-04-12 14:55:34 -05:00
parent a7586a9e43
commit 2e436af4e8
1 changed files with 1 additions and 2 deletions

View File

@ -5,10 +5,9 @@ from __future__ import annotations
import logging
from PySide6.QtCore import Qt, QTimer, Signal, Property, QPoint
from PySide6.QtGui import QColor, QIcon, QPixmap, QPainter, QPen, QBrush, QPolygon, QPainterPath, QFont
from PySide6.QtGui import QColor, QIcon, QPixmap, QPainter, QPen, QPolygon, QPainterPath, QFont
from PySide6.QtWidgets import (
QWidget, QVBoxLayout, QHBoxLayout, QLabel, QPushButton, QSlider, QStyle,
QApplication,
)