Skip to content
Snippets Groups Projects
Commit a2a502d2 authored by Campbell Barton's avatar Campbell Barton
Browse files

Remove prints from last commit

parent 5d2d2d26
No related branches found
No related tags found
No related merge requests found
......@@ -227,7 +227,6 @@ def edit_list_from_file__use_zero_before_float_suffix(_source, data):
# 1.0f
for match in re.finditer(r"\b(\d+)\.([fF])\b", data):
print(match.groups())
edits.append((
match.span(),
'%s.0%s' % (match.group(1), match.group(2)),
......@@ -240,7 +239,6 @@ def edit_list_from_file__use_zero_before_float_suffix(_source, data):
# 1.0f
for match in re.finditer(r"\b(\d+\.\d+)F\b", data):
print(match.groups())
edits.append((
match.span(),
'%sf' % (match.group(1),),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment