1
0
Fork 0
mirror of synced 2024-06-02 18:34:37 +12:00

Fix declaration

This commit is contained in:
Serene-Arc 2023-06-18 13:11:51 +10:00
parent bcce19100b
commit 928aa7e623

View file

@ -10,7 +10,7 @@ logger = logging.getLogger(__name__)
class SubmissionArchiveEntry(BaseArchiveEntry):
def __init__(self, submission: praw.models.Submission, include_comments: bool) -> None:
def __init__(self, submission: praw.models.Submission, include_comments: bool = True) -> None:
super().__init__(submission)
self._include_comments = include_comments