LGTM: remove redundant variable assignment

ref: ddeaa48851/files/src/Mod/Spreadsheet/App/Spreadsheet_legacy.py (x687bc63f783c60bd):1
This commit is contained in:
luz paz
2021-02-06 15:01:32 -05:00
committed by wwmayer
parent 53972c62e3
commit 9b440f9b26

View File

@@ -855,7 +855,7 @@ class SpreadsheetView(QtGui.QWidget):
v = float(value)
except:
try:
v = v = str(value)
v = str(value)
except:
v = value
setattr(self.spreadsheet.Proxy,key,v)