From a566dc709a898967f72504ebe3824b96035a4d88 Mon Sep 17 00:00:00 2001 From: Falko Strenzke Date: Wed, 29 May 2024 08:47:45 +0200 Subject: [PATCH] removed type hint causing problems on some platforms --- src/tests/cli_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/cli_tests.py b/src/tests/cli_tests.py index 2c0f49d34..b502ea8d7 100755 --- a/src/tests/cli_tests.py +++ b/src/tests/cli_tests.py @@ -4599,7 +4599,7 @@ def test_encryption_and_signing(self): remove_files(dst, dec) - def verify_pqc_algo_ui_nb_to_algo_ui_str(self, stdout: str, algo_ui_exp_strs: list[str]) -> None: + def verify_pqc_algo_ui_nb_to_algo_ui_str(self, stdout: str, algo_ui_exp_strs) -> None: stdout_lines = stdout.split('\n') for expected_line in algo_ui_exp_strs: found_this_entry : bool = False