aboutsummaryrefslogtreecommitdiffstats
path: root/examples/network/fortuneclient/fortuneclient.py
diff options
context:
space:
mode:
authorCristián Maureira-Fredes <cristian.maureira-fredes@qt.io>2023-04-05 17:18:08 +0200
committerCristian Maureira-Fredes <cristian.maureira-fredes@qt.io>2023-04-05 20:03:22 +0000
commite3c22d12f3f91098042f3f09a75093addbd5bd80 (patch)
tree0b246ad62217d05cc123c370f3254e58d8946789 /examples/network/fortuneclient/fortuneclient.py
parent23cc8b6f01205567904300c494854f0bbaad11e0 (diff)
examples: remove unused imports
Change-Id: I88a7bb2fe91abcfdef6e6014b088d08c4e613893 Pick-to: 6.5 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Diffstat (limited to 'examples/network/fortuneclient/fortuneclient.py')
-rw-r--r--examples/network/fortuneclient/fortuneclient.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/examples/network/fortuneclient/fortuneclient.py b/examples/network/fortuneclient/fortuneclient.py
index 2b7ecfb85..b695c2ea8 100644
--- a/examples/network/fortuneclient/fortuneclient.py
+++ b/examples/network/fortuneclient/fortuneclient.py
@@ -6,12 +6,11 @@
import sys
-from PySide6.QtCore import QDataStream, QTimer, Qt
+from PySide6.QtCore import QDataStream, QTimer
from PySide6.QtGui import QIntValidator
from PySide6.QtNetwork import QAbstractSocket, QTcpSocket
from PySide6.QtWidgets import (QApplication, QDialog, QDialogButtonBox, QGridLayout,
- QLabel, QLineEdit, QMessageBox, QPushButton,
- QVBoxLayout, QWidget)
+ QLabel, QLineEdit, QMessageBox, QPushButton)
class Client(QDialog):