Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
sayanarijit committed Feb 12, 2024
1 parent a9178a0 commit af4e61a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tiptapy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def escape_values_recursive(node):
for k, v in node.items():
esc_k = escape(k)
if k != esc_k:
node.pop(k)
del node[k]
if esc_k == html_key:
# Allow only iframe tag
p = IFrameParser()
Expand Down

0 comments on commit af4e61a

Please sign in to comment.