minor: Fix trailing whitespace as seen in ()

This commit is contained in:
MDW 2023-11-29 20:57:32 +01:00 committed by GitHub
parent 35fb768faa
commit 62783813eb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 7 deletions

View file

@ -1,5 +1,5 @@
#!/usr/bin/env python
"""
"""
$ rtl_433 -R 104 -F json | rtl_433_json_to_rtlwmbus.py
A script to convert rtl_433 wmbus json output to rtlwmbus output

View file

@ -534,7 +534,7 @@ mappings = {
"state_class": "measurement"
}
},
"energy_kWh": {
"device_type": "sensor",
"object_suffix": "kwh",
@ -546,7 +546,7 @@ mappings = {
"state_class": "measurement"
}
},
"current_A": {
"device_type": "sensor",
"object_suffix": "A",
@ -558,7 +558,7 @@ mappings = {
"state_class": "measurement"
}
},
"voltage_V": {
"device_type": "sensor",
"object_suffix": "V",
@ -656,7 +656,7 @@ mappings = {
"state_class": "total_increasing",
}
},
"consumption": {
"device_type": "sensor",
"object_suffix": "consumption",

View file

@ -154,9 +154,9 @@ def process_source(path, name):
m = re.match(r'(?:static)?\s?char\s?\*\s?[^\*\s]+\s?=\s?(?:{|")', line)
if m:
err(f"::error file={name},line={i}::char * variable should be char const * when being given a constant value")
# look for output fields declarations that must be static char const *const
m = re.match(r'static\s?char\s+const\s*\*\s*[^\*\s]+\[\]\s*=\s*\{', line)
m = re.match(r'static\s?char\s+const\s*\*\s*[^\*\s]+\[\]\s*=\s*\{', line)
if m:
err(f"::error file={name},line={i}::output fields static variable should be 'static char const *const'")