aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/tests/signals/pysignal_test.py
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2021-04-29 11:18:49 +0200
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2021-04-29 15:56:58 +0200
commit6d2af409eedee377b3c2ba0cd8156b9409fabd9d (patch)
tree660f8fd87f77c1030cf97cc65345b9a941a321e4 /sources/pyside6/tests/signals/pysignal_test.py
parent88fff87519e741a3a999b8c1545834d116859faa (diff)
Tests: Fix some space-related flake8 warnings
Change-Id: I9b0ad08839bf1246620c557ec304dfa90882907b Reviewed-by: Christian Tismer <tismer@stackless.com>
Diffstat (limited to 'sources/pyside6/tests/signals/pysignal_test.py')
-rw-r--r--sources/pyside6/tests/signals/pysignal_test.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/sources/pyside6/tests/signals/pysignal_test.py b/sources/pyside6/tests/signals/pysignal_test.py
index bc6310f5a..86c05324a 100644
--- a/sources/pyside6/tests/signals/pysignal_test.py
+++ b/sources/pyside6/tests/signals/pysignal_test.py
@@ -45,6 +45,7 @@ except ImportError:
from helper.usesqapplication import UsesQApplication
+
class Dummy(QObject):
"""Dummy class used in this test."""
def __init__(self, parent=None):
@@ -112,6 +113,7 @@ class PyObjectType(UsesQApplication):
self.app.exec_()
self.assertEqual(self.callCount, 2)
+
class PythonSigSlot(unittest.TestCase):
def setUp(self):
self.called = False
@@ -146,7 +148,6 @@ class PythonSigSlot(unittest.TestCase):
self.assertTrue(self.called)
-
def testDisconnect(self):
obj1 = Dummy()