removed debug print

This commit is contained in:
iLLiCiTiT 2020-09-03 11:19:57 +02:00
parent 043aec3fef
commit a88fcfe9fa

View file

@ -20,7 +20,6 @@ class NumberSpinBox(QtWidgets.QDoubleSpinBox):
def value(self):
output = super(NumberSpinBox, self).value()
print(self.decimals())
if self.decimals() == 0:
output = int(output)
return output