Cleanup: Remove redundant property UI data clear

Since the UI data is now stored in the property, and the property is
deleted on the next line, this doesn't need to be called separately.
This commit is contained in:
Hans Goudey 2021-09-01 11:46:04 -05:00
parent 083a8921ec
commit 99c981fd06
1 changed files with 1 additions and 2 deletions

View File

@ -1388,7 +1388,6 @@ class WM_OT_properties_edit(Operator):
def execute(self, context):
from rna_prop_ui import (
rna_idprop_ui_prop_clear,
rna_idprop_ui_prop_update,
rna_idprop_value_item_type,
)
@ -1415,7 +1414,7 @@ class WM_OT_properties_edit(Operator):
prop_type_old = type(item[prop_old])
rna_idprop_ui_prop_clear(item, prop_old)
# Deleting the property will also remove the UI data
del item[prop_old]
# Reassign