Skip to content
Snippets Groups Projects
Commit fd09cf1c68b9 authored by Vincent Hatakeyama's avatar Vincent Hatakeyama
Browse files

:ambulance: fix python 3.8 incompatible syntax

parent a982f5cd6ecb
No related branches found
No related tags found
1 merge request!112🚑 fix python 3.8 incompatible syntax
......@@ -204,7 +204,7 @@
return mount_list, mount_dict
def anthem_mounts(project_path: str, pythons: tuple[str]) -> List[Mount]:
def anthem_mounts(project_path: str, pythons: Tuple[str]) -> List[Mount]:
"""Return a list of monts for all the anthem songs present in the super project."""
mounts: List[Mount] = []
# also mount songs for anthem to avoid having to rebuild the image when they
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment