Fix: leftover python inline type hint
authorMichael Jeanson <mjeanson@efficios.com>
Tue, 28 Mar 2023 21:27:29 +0000 (17:27 -0400)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Fri, 31 Mar 2023 21:27:12 +0000 (17:27 -0400)
When rebasing the python 3.4 support patches, a leftover inline type
hint was introduced. Fix it to restore python 3.4 support.

Change-Id: Ieed4f555f757a6ee37285c0317659524ec97bfa8
Signed-off-by: Michael Jeanson <mjeanson@efficios.com>
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
tests/utils/lttngtest/environment.py

index e71e588df80dfdfcfd14290547cf73cad77c2716..a119669ed99f1718d52f738382a44dc8b874ef7b 100644 (file)
@@ -100,7 +100,7 @@ class WaitTraceTestApplication:
         test_app_env["LTTNG_UST_REGISTER_TIMEOUT"] = "-1"
 
         # File that the application will create to indicate it has completed its initialization.
-        app_ready_file_path: str = tempfile.mktemp(
+        app_ready_file_path = tempfile.mktemp(
             prefix="app_",
             suffix="_ready",
             dir=self._compat_open_path(environment.lttng_home_location),
This page took 0.026603 seconds and 4 git commands to generate.