mirror of
https://github.com/tubearchivist/jellyfin.git
synced 2024-11-16 17:00:14 +00:00
make linter happy ;)
This commit is contained in:
parent
8026ba349d
commit
51e7613880
@ -101,7 +101,7 @@ class Show:
|
||||
|
||||
def _get_ta_channel(self) -> TAChannel | None:
|
||||
"""get ta channel metadata"""
|
||||
channel_id: str = self.show["Path"].replace("\\","/").split("/")[-1]
|
||||
channel_id: str = self.show["Path"].replace("\\", "/").split("/")[-1]
|
||||
ta_channel: TAChannel | None = TubeArchivist().get_channel(channel_id)
|
||||
|
||||
return ta_channel
|
||||
@ -155,7 +155,9 @@ class Show:
|
||||
print(f"[show][{showname}] indexing {len(new_episodes)} videos")
|
||||
seasons_created: list[str] = []
|
||||
for jf_ep in new_episodes:
|
||||
youtube_id: str = os.path.basename(jf_ep["Path"].replace("\\","/")).split(".")[0]
|
||||
youtube_id: str = os.path.basename(
|
||||
jf_ep["Path"].replace("\\", "/")
|
||||
).split(".")[0]
|
||||
episode_handler = Episode(youtube_id, jf_ep["Id"])
|
||||
ta_video: TAVideo = episode_handler.get_ta_video()
|
||||
season_folder: str | None = self.create_season(ta_video, jf_ep)
|
||||
@ -186,7 +188,9 @@ class Show:
|
||||
return None
|
||||
|
||||
base: str = get_config()["ta_video_path"]
|
||||
channel_folder = os.path.split(os.path.split(jf_ep["Path"].replace("\\","/"))[0])[-1]
|
||||
channel_folder = os.path.split(
|
||||
os.path.split(jf_ep["Path"].replace("\\", "/"))[0]
|
||||
)[-1]
|
||||
season_folder = os.path.join(base, channel_folder, expected_season)
|
||||
os.makedirs(season_folder)
|
||||
self._wait_for_season(expected_season)
|
||||
|
Loading…
Reference in New Issue
Block a user