Skip to content

Commit

Permalink
Remove list content type hint
Browse files Browse the repository at this point in the history
That seems not to be supported on python 3.8
  • Loading branch information
fmauch committed Jan 30, 2024
1 parent 02ae0ed commit c5c0e78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit c5c0e78

Please sign in to comment.