Skip to content

Commit

Permalink
Merge pull request #238 from praw-dev/comment_forrest_typing
Browse files Browse the repository at this point in the history
CommentForest: replace_more typing
  • Loading branch information
LilSpazJoekp committed Feb 25, 2023
2 parents 4a5c811 + 4132a20 commit 9b923b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion asyncpraw/models/comment_forest.py
Expand Up @@ -181,7 +181,7 @@ async def async_func():

@_deprecate_args("limit", "threshold")
async def replace_more(
self, *, limit: int = 32, threshold: int = 0
self, *, limit: Optional[int] = 32, threshold: int = 0
) -> List["asyncpraw.models.MoreComments"]:
"""Update the comment forest by resolving instances of :class:`.MoreComments`.
Expand Down

0 comments on commit 9b923b4

Please sign in to comment.