Clearer naming

This commit is contained in:
Johan van Eck 2025-07-26 17:23:54 +03:00
parent dfe37a51a4
commit c9629e8b3d
5100 changed files with 32992 additions and 32541 deletions

View file

@ -1,4 +1,4 @@
def get_file_name(service, profile_name):
def get_name(service, profile_name):
safe_profile_name = (
profile_name.replace("/", "-")
.replace("[", "(")
@ -7,4 +7,4 @@ def get_file_name(service, profile_name):
.replace("10 bit", "10bit")
.replace("Atmos", "ATMOS")
)
return f"{service}-{safe_profile_name}"
return f"{service.capitalize()} - {safe_profile_name}"