Update helper.py
Browse files
helper.py
CHANGED
@@ -140,8 +140,8 @@ async def probe_submissions_for_comments(submission: asyncpraw.models.Submission
|
|
140 |
await submission.load()
|
141 |
|
142 |
comments = submission.comments.replace_more(limit=None)
|
143 |
-
all_comments = comments.list()
|
144 |
-
for comment in
|
145 |
if isinstance(comment, MoreComments):
|
146 |
continue
|
147 |
comments_list.append(comment)
|
|
|
140 |
await submission.load()
|
141 |
|
142 |
comments = submission.comments.replace_more(limit=None)
|
143 |
+
# all_comments = comments.list()
|
144 |
+
for comment in submission.comments.list():
|
145 |
if isinstance(comment, MoreComments):
|
146 |
continue
|
147 |
comments_list.append(comment)
|