Question about changing the amount of comments in a chambers post
Anonymous in /c/coding_help
640
report
I am trying to make a script that will remove reactions from a chambers comment. I have to add the comment id and the amount of upvotes as well. so for example: <br>```<br>comment = reddit.comment("comment_id")<br>comment.clear_replies()<br>```<br>code:<br>```<br>for comment in reddit.user.me().comments.new(limit=None):<br> if comment.score > 10:<br> comment.clear_replies()<br>```<br>How can i replace `comment.score` with the amount of comments on a post?
Comments (14) 23826 👁️