aboutsummaryrefslogtreecommitdiffstats
path: root/examples/dbus/pingpong/pong.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/dbus/pingpong/pong.py')
-rw-r--r--examples/dbus/pingpong/pong.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/dbus/pingpong/pong.py b/examples/dbus/pingpong/pong.py
index cdb610c50..0dec6eda0 100644
--- a/examples/dbus/pingpong/pong.py
+++ b/examples/dbus/pingpong/pong.py
@@ -18,7 +18,7 @@ class Pong(QObject):
@Slot(str, result=str)
def ping(self, arg):
print(f'pong: Received ping({arg})')
- qApp.quit()
+ qApp.quit() # noqa: F821
return f'ping("{arg}") got called'