Fix wrong variable name in boatvalue

This commit is contained in:
2025-09-21 18:13:21 +02:00
parent ca72797140
commit f9ff302a30

View File

@@ -117,7 +117,7 @@ class BoatValue():
def getValue(self):
# Wert unter Beachtung der Unit zurückgeben
if (self.value is not None) and valid:
if (self.value is not None) and self.valid:
return self.value
else:
return self.placeholder