aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/tests/QtUiTools/bug_552.py
diff options
context:
space:
mode:
Diffstat (limited to 'sources/pyside6/tests/QtUiTools/bug_552.py')
-rw-r--r--sources/pyside6/tests/QtUiTools/bug_552.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/pyside6/tests/QtUiTools/bug_552.py b/sources/pyside6/tests/QtUiTools/bug_552.py
index ce040f4fb..06a6b72a4 100644
--- a/sources/pyside6/tests/QtUiTools/bug_552.py
+++ b/sources/pyside6/tests/QtUiTools/bug_552.py
@@ -21,7 +21,7 @@ class View_1(QWidget):
super().__init__()
loader = QUiLoader()
file = Path(__file__).resolve().parent / 'bug_552.ui'
- assert(file.is_file())
+ assert (file.is_file())
widget = loader.load(os.fspath(file), self)
self.children = []
for child in widget.findChildren(QObject, None):