diff options
author | Friedemann Kleint <[email protected]> | 2023-11-28 12:10:26 +0100 |
---|---|---|
committer | Friedemann Kleint <[email protected]> | 2023-11-28 15:58:37 +0100 |
commit | ddc01a90175e90a7854be0d90bed25a902613e59 (patch) | |
tree | 26eecdea75c0f304a46880eec30720822439a34d /examples/widgets/richtext/orderform | |
parent | ca3a64c024ae817ca38b1df87123f341637c8bd4 (diff) |
Examples: Fix some flake warnings
Mostly spacing related.
Pick-to: 6.6
Change-Id: If0d5b25e1c60b7b216f970d1e57613f00bd04a37
Reviewed-by: Adrian Herrmann <[email protected]>
Diffstat (limited to 'examples/widgets/richtext/orderform')
-rw-r--r-- | examples/widgets/richtext/orderform/orderform.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/widgets/richtext/orderform/orderform.py b/examples/widgets/richtext/orderform/orderform.py index fd0be01fe..dea856a72 100644 --- a/examples/widgets/richtext/orderform/orderform.py +++ b/examples/widgets/richtext/orderform/orderform.py @@ -153,8 +153,8 @@ class MainWindow(QMainWindow): def create_sample(self): dialog = DetailsDialog('Dialog with default values', self) self.create_letter('Mr Smith', - '12 High Street\nSmall Town\nThis country', - dialog.order_items(), True) + '12 High Street\nSmall Town\nThis country', + dialog.order_items(), True) @Slot() def open_dialog(self): @@ -162,7 +162,7 @@ class MainWindow(QMainWindow): if dialog.exec() == QDialog.Accepted: self.create_letter(dialog.sender_name(), dialog.sender_address(), - dialog.order_items(), dialog.send_offers()) + dialog.order_items(), dialog.send_offers()) @Slot() def print_file(self): |