From c5c0e78fd9212996cfeeb6cf8b2d009c901da36c Mon Sep 17 00:00:00 2001 From: Felix Exner Date: Tue, 30 Jan 2024 19:35:13 +0100 Subject: [PATCH] Remove list content type hint That seems not to be supported on python 3.8 --- test/test_run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_run.py b/test/test_run.py index 275b9e3..ba40050 100644 --- a/test/test_run.py +++ b/test/test_run.py @@ -12,7 +12,7 @@ def assertFileExists(self, path): if not os.path.lexists(path): raise AssertionError('File not exists in path "' + path + '".') - def assert_cmd_in_output(self, cmd: str, output: list[str]): + def assert_cmd_in_output(self, cmd: str, output: list): merged_output = "\n".join(output) if not any(cmd in x for x in output): raise AssertionError(