blacken search component

This commit is contained in:
geoffrey45
2021-12-30 21:32:12 +03:00
parent efd7f84b1f
commit 61e7ff7188
9 changed files with 233 additions and 128 deletions
+5 -5
View File
@@ -288,12 +288,12 @@ def getFolderTree(folder: str = None):
folders.append(dir)
if entry.is_file():
if isValidFile(entry.name) == True:
file = all_songs_instance.find_song_by_path(entry.path)
# if entry.is_file():
# if isValidFile(entry.name) == True:
# file = all_songs_instance.find_song_by_path(entry.path)
if not file:
getTags(entry.path)
# if not file:
# getTags(entry.path)
songs_array = all_songs_instance.find_songs_by_folder(
req_dir)