Skip to content

Commit

Permalink
test: error type annotation
Browse files Browse the repository at this point in the history
Make mypy happy.
  • Loading branch information
achilleas-k committed Jan 26, 2024
1 parent 84f18f8 commit d1a5e9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/scripts/imgtestlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ def filter_builds(manifests, distro=None, arch=None, skip_ostree_pull=True):
# print output which includes list of downloaded files for CI job log
print(out)

errors = []
errors: list[str] = []

osrelease = read_osrelease()
distro_version = osrelease["ID"] + "-" + osrelease["VERSION_ID"]
Expand Down

0 comments on commit d1a5e9e

Please sign in to comment.