my.youtube.takeout: deduplicate watched videos and sort out a few minor errors

This commit is contained in:
Dima Gerasimov 2024-09-22 17:47:05 +01:00 committed by karlicoss
parent 75639a3d5e
commit 8ed9e1947e
3 changed files with 102 additions and 33 deletions

View file

@ -1,5 +1,10 @@
from ..core.warnings import high
high("DEPRECATED! Please use my.youtube.takeout instead.")
from ..core.util import __NOT_HPI_MODULE__
from my.core import __NOT_HPI_MODULE__
from ..youtube.takeout import *
from typing import TYPE_CHECKING
from my.core.warnings import high
high("DEPRECATED! Please use my.youtube.takeout instead.")
if not TYPE_CHECKING:
from my.youtube.takeout import *