profilarr-trash-guides/scripts/utils/strings.py
2025-07-26 14:41:34 +03:00

8 lines
250 B
Python

def get_file_name(profile_name):
return (
profile_name.replace("/", "-")
.replace("[", "(")
.replace("]", ")")
# TODO: This triggers to often, how to be more specific?
.replace("HDR10Plus", "HDR10+")
)