def clean_title(value): value = slugify(value) for char in CHARS: value = value.replace(char, "") return value