Skip to content

Commit

Permalink
Remove unused and buggy metadata_from
Browse files Browse the repository at this point in the history
  • Loading branch information
benoit74 committed Nov 16, 2023
1 parent bf8c50a commit 31c6df2
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/youtube2zim/playlists/scraper.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,11 @@ def __init__(

self.build_dir = pathlib.Path(tempfile.mkdtemp())

# metadata_from JSON file
self.metadata_from = (
pathlib.Path(self.metadata_from) if self.metadata_from else None
)
self.metadata_from = None
# metadata_from JSON file is broken for now
# self.metadata_from = (
# pathlib.Path(self.metadata_from) if self.metadata_from else None
# )
self.metadata = {} # custom metadata holder

# update youtube credentials store
Expand Down

0 comments on commit 31c6df2

Please sign in to comment.