[cleanup] misc

This commit is contained in:
pukkandan 2021-10-23 02:07:20 +05:30
parent 457f6d6866
commit 49a57e70a9
No known key found for this signature in database
GPG key ID: 0F00D95A001F4698
17 changed files with 104 additions and 69 deletions

View file

@ -9,7 +9,7 @@ import sys
sys.path.insert(0, dirn(dirn((os.path.abspath(__file__)))))
lazy_extractors_filename = sys.argv[1]
lazy_extractors_filename = sys.argv[1] if len(sys.argv) > 1 else 'yt_dlp/extractor/lazy_extractors.py'
if os.path.exists(lazy_extractors_filename):
os.remove(lazy_extractors_filename)