Skip to content

Commit 6993c24

Browse files
Merge pull request #377 from jmccrohan/lookup_table_passthrough
Passthrough missing lookup table value
2 parents 9e9fceb + 1290c80 commit 6993c24

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

custom_components/solarman/parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ def lookup_value (self, value, options):
132132
for o in options:
133133
if (o['key'] == value):
134134
return o['value']
135-
return "LOOKUP"
135+
return value
136136

137137

138138
def try_parse_ascii (self, rawData, definition, start, length):

0 commit comments

Comments
 (0)