Skip to content

Commit

Permalink
more python<3.9 fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ralequi committed Jun 29, 2022
1 parent 9e27143 commit 0dda4e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/storclifile.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def run(self, args, pass_options=False, **kwargs) -> subprocess.CompletedProcess

_stdout = raw_data

ret = subprocess.CompletedProcess[str](args, 0, _stdout, None)
ret = subprocess.CompletedProcess(args, 0, _stdout, None)

return ret

Expand Down

0 comments on commit 0dda4e9

Please sign in to comment.