Tests: convert even more left-over type hint to type comment
[lttng-tools.git] / tests / utils / lttngtest / environment.py
index 6567467ebb19328f8208e32ab7e1d21a1807c1ad..42b0a61b9b35930d9474fa529390e9181382ff6f 100644 (file)
@@ -206,9 +206,9 @@ class TraceTestApplication:
 
         test_app_args = [str(binary_path)]
 
-        self._process: subprocess.Popen = subprocess.Popen(
+        self._process = subprocess.Popen(
             test_app_args, env=test_app_env
-        )
+        )  # type: subprocess.Popen
 
     def wait_for_exit(self):
         # type: () -> None
This page took 0.022788 seconds and 4 git commands to generate.