Formatted to conventions

This commit is contained in:
DraftKinner 2025-02-07 23:10:56 -05:00
parent ec5a26b603
commit 802b5b5928
2 changed files with 7 additions and 8 deletions

View file

@ -19,10 +19,11 @@ from zotify.utils import (
fix_filename, fix_filename,
) )
class Collection: class Collection:
def __init__(self): def __init__(self):
self.playables: list[PlayableData] = [] self.playables: list[PlayableData] = []
def get_existing(self, ext: str) -> dict[str, str]: def get_existing(self, ext: str) -> dict[str, str]:
existing: dict[str, str] = {} existing: dict[str, str] = {}
@ -30,14 +31,13 @@ class Collection:
library = Path(self.playables[0].library) library = Path(self.playables[0].library)
output = self.playables[0].output_template output = self.playables[0].output_template
metadata = self.playables[0].metadata metadata = self.playables[0].metadata
id_type = self.playables[0].type
for meta in metadata: for meta in metadata:
if meta.name in meta_tags: if meta.name in meta_tags:
output = output.replace( output = output.replace(
"{" + meta.name + "}", fix_filename(meta.string) "{" + meta.name + "}", fix_filename(meta.string)
) )
collection_path = library.joinpath(output).expanduser() collection_path = library.joinpath(output).expanduser()
if collection_path.parent.exists(): if collection_path.parent.exists():
file_path = "*.{}".format(ext) file_path = "*.{}".format(ext)
@ -48,11 +48,11 @@ class Collection:
f_path = Path(file) f_path = Path(file)
f = LocalFile(f_path) f = LocalFile(f_path)
existing[f.get_metadata("key")] = f_path.stem existing[f.get_metadata("key")] = f_path.stem
for playable in self.playables: for playable in self.playables:
if playable.id in existing.keys(): if playable.id in existing.keys():
playable.existing = True playable.existing = True
return existing return existing

View file

@ -125,5 +125,4 @@ class LocalFile:
tag: metadata tag to be retrieved tag: metadata tag to be retrieved
""" """
f = load_file(self.__path) f = load_file(self.__path)
return f[tag].value
return f[tag].value