chore: Remove unnecessary print statements

This commit is contained in:
Suraj Shetty
2021-05-06 18:37:45 +05:30
parent 232cd28d67
commit c26d41acf9
4 changed files with 2 additions and 8 deletions

View File

@@ -12,7 +12,6 @@ def update_doctypes():
for f in dt.fields:
if f.fieldname == d.fieldname and f.fieldtype in ("Text", "Small Text"):
print(f.parent, f.fieldname)
f.fieldtype = "Text Editor"
dt.save()
break