diff --git a/platypush/runner/_runner.py b/platypush/runner/_runner.py
index ac713c9d2..ce2a443ab 100644
--- a/platypush/runner/_runner.py
+++ b/platypush/runner/_runner.py
@@ -49,12 +49,9 @@ class ApplicationRunner:
             self._print_version()
 
         while True:
-            with (
-                CommandStream(parsed_args.ctrl_sock) as stream,
-                ApplicationProcess(
-                    *args, pidfile=parsed_args.pidfile, timeout=self._default_timeout
-                ) as self._proc,
-            ):
+            with CommandStream(parsed_args.ctrl_sock) as stream, ApplicationProcess(
+                *args, pidfile=parsed_args.pidfile, timeout=self._default_timeout
+            ) as self._proc:
                 try:
                     self._listen(stream)
                 except KeyboardInterrupt: