make linter happy ;)

This commit is contained in:
Froghut 2023-08-25 09:51:16 +02:00 committed by GitHub
parent 8026ba349d
commit 51e7613880
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 3 deletions

View File

@ -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)