music-kraken-core/src/music_kraken/utils/string_processing.py

9 lines
204 B
Python
Raw Normal View History

def unify(string: str) -> str:
"""
returns an unified str, to make comparosons easy.
an unified string has following attributes:
- is lowercase
"""
return string.lower()