Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions tools/clean_svg.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,10 @@

def human_round(number):
"""
Round to closest .5
Round to closest .5, keep integer values
"""
return round(number * 2) / 2.0
v = round(number * 2) / 2.0
return int(v) if v == int(v) else v


def traverse_and_clean(node):
Expand Down Expand Up @@ -83,7 +84,7 @@ def round_if_number(value):
def remove_non_svg_nodes_and_strip_namespace(root):
if root.tag.startswith(BRACKETS_NAMESPACE):
root.tag = root.tag[len(BRACKETS_NAMESPACE) :]
for elem in root:
for elem in list(root):
if (
not elem.tag.startswith(BRACKETS_NAMESPACE)
or elem.tag == BRACKETS_NAMESPACE + "metadata"
Expand Down