We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53e3fde commit 3391763Copy full SHA for 3391763
examples/confluence_v2_comments_example.py
@@ -190,12 +190,9 @@ def delete_comment_example(comment_id):
190
191
try:
192
# Delete the comment
193
- result = confluence.delete_comment(comment_id)
+ confluence.delete_comment(comment_id)
194
195
- if result:
196
- print(f"Successfully deleted comment {comment_id}")
197
- else:
198
- print(f"Failed to delete comment {comment_id}")
+ print(f"Successfully deleted comment {comment_id}")
199
200
except Exception as e:
201
print(f"Error deleting comment: {e}")
0 commit comments