from spotify_playlists_additions_notifications.constants import APP_NAME def get_key(key: str) -> str: """Compose a Redis key. Args: key (str): Key. arg (str): Arg. Returns: str: Complete key constructed by concatenated prefix + key + arg. """ return f'{APP_NAME}/{key}'