From 8466f0713f871bcbad5d5f6d0d6a291cb441e3df Mon Sep 17 00:00:00 2001 From: Michael Jeanson Date: Tue, 28 Mar 2023 17:27:29 -0400 Subject: [PATCH] Fix: leftover python inline type hint MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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 --- tests/utils/lttngtest/environment.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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), -- 2.34.1