BREAK EVERYTHING

- some broken edits
This commit is contained in:
geoffrey45
2022-06-17 20:29:09 +03:00
parent 7718a7c99f
commit 06ed41d869
9 changed files with 101 additions and 49 deletions
+3 -1
View File
@@ -119,7 +119,9 @@ def create_album_hash(title: str, artist: str) -> str:
"""
Creates a simple hash for an album
"""
return (title + artist).replace(" ", "").lower()
lower = (title + artist).replace(" ", "").lower()
hash = lower.join([i for i in lower if i not in '/\\:*?"<>|&'])
return hash
def create_new_date():