diff options
| author | Friedemann Kleint <Friedemann.Kleint@qt.io> | 2025-07-28 08:30:29 +0200 |
|---|---|---|
| committer | Friedemann Kleint <Friedemann.Kleint@qt.io> | 2025-07-28 10:18:17 +0200 |
| commit | 6ca6c142885e317ab31fad9715822f60795c0753 (patch) | |
| tree | f3c16e103c9f2651a4f1eacc2180fd05cab18950 /sources/pyside6/tests/pysidetest/notify_id.py | |
| parent | 8edf6c9f9b609042548d519ea0b38ab9e48db295 (diff) | |
Tests: Fix flake 8 warning E402 module level import not at top of file
Pick-to: 6.9 6.8
Change-Id: Ibcd0ee3190638ac224c6dd770de0dffe93ed9dda
Reviewed-by: Cristian Maureira-Fredes <cristian.maureira-fredes@qt.io>
Diffstat (limited to 'sources/pyside6/tests/pysidetest/notify_id.py')
| -rw-r--r-- | sources/pyside6/tests/pysidetest/notify_id.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sources/pyside6/tests/pysidetest/notify_id.py b/sources/pyside6/tests/pysidetest/notify_id.py index 49ba6969f..43c7b0dff 100644 --- a/sources/pyside6/tests/pysidetest/notify_id.py +++ b/sources/pyside6/tests/pysidetest/notify_id.py @@ -9,10 +9,10 @@ import unittest from pathlib import Path sys.path.append(os.fspath(Path(__file__).resolve().parents[1])) -from init_paths import init_test_paths +from init_paths import init_test_paths # noqa: E402 init_test_paths(False) -from PySide6.QtCore import QObject, Signal, Property, Slot +from PySide6.QtCore import QObject, Signal, Property, Slot # noqa: E402 '''Tests that the signal notify id of a property is correct, aka corresponds to the initially set notify method.''' |
