Skip to content
This repository has been archived by the owner on Jun 30, 2022. It is now read-only.

Commit

Permalink
init CommentsCore object properly, fixes #180
Browse files Browse the repository at this point in the history
  • Loading branch information
anshuman852 committed May 29, 2022
1 parent f06c74b commit c786c45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion youtubesearchpython/core/comments.py
Expand Up @@ -15,14 +15,14 @@


class CommentsCore(RequestCore):
commentsComponent = {"result": []}
result = None
continuationKey = None
isNextRequest = False
response = None

def __init__(self, videoLink: str):
super().__init__()
self.commentsComponent = {"result": []}
self.responseSource = None
self.videoLink = videoLink

Expand Down

0 comments on commit c786c45

Please sign in to comment.