removed unnecessary line

This commit is contained in:
sh1nobu 2021-09-03 19:42:08 +08:00
parent 0e1ccd1f73
commit f7997fb25a
2 changed files with 2 additions and 3 deletions

View File

@ -65,4 +65,4 @@ def download_episodes(url):
url_resp = requests.get(url[1], headers=header, stream=True)
file_name = os.path.join(folder_path, f"{url[0]}.mp4")
with open(file_name, "wb") as file:
shutil.copyfileobj(url_resp.raw, file)
shutil.copyfileobj(url_resp.raw, file)

View File

@ -84,7 +84,6 @@ def bitanime():
download_urls = bd.get_download_urls(download_links, True)
print(f"Downloading {Fore.LIGHTCYAN_EX}{len(download_urls)} episode/s")
print(f"{Fore.LIGHTGREEN_EX}====================================")
print(download_urls)
bd.get_path(folder)
thread_map(
bd.download_episodes, download_urls, ncols=75, total=len(download_urls)
@ -127,4 +126,4 @@ def bitanime():
if __name__ == "__main__":
bitanime()
bitanime()