Fix wrong variable name in boatvalue

This commit is contained in:
Thomas Hooge 2025-09-21 18:13:21 +02:00
parent ca72797140
commit f9ff302a30
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ class BoatValue():
def getValue(self): def getValue(self):
# Wert unter Beachtung der Unit zurückgeben # 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 return self.value
else: else:
return self.placeholder return self.placeholder