From: Michael Jeanson Date: Tue, 28 Mar 2023 21:27:29 +0000 (-0400) Subject: Fix: leftover python inline type hint X-Git-Url: https://git.liburcu.org/?p=lttng-tools.git;a=commitdiff_plain;h=8466f0713f871bcbad5d5f6d0d6a291cb441e3df Fix: leftover python inline type hint 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 Signed-off-by: Jérémie Galarneau --- diff --git a/tests/utils/lttngtest/environment.py b/tests/utils/lttngtest/environment.py index e71e588df..a119669ed 100644 --- a/tests/utils/lttngtest/environment.py +++ b/tests/utils/lttngtest/environment.py @@ -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),