diff --git a/examples/rtl_433_json_to_rtlwmbus.py b/examples/rtl_433_json_to_rtlwmbus.py
index 9ae27aa7..49b9ad74 100755
--- a/examples/rtl_433_json_to_rtlwmbus.py
+++ b/examples/rtl_433_json_to_rtlwmbus.py
@@ -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
diff --git a/examples/rtl_433_mqtt_hass.py b/examples/rtl_433_mqtt_hass.py
index e42d25c8..0510674f 100755
--- a/examples/rtl_433_mqtt_hass.py
+++ b/examples/rtl_433_mqtt_hass.py
@@ -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",
diff --git a/tests/symbolizer.py b/tests/symbolizer.py
index 5b287299..8b303444 100755
--- a/tests/symbolizer.py
+++ b/tests/symbolizer.py
@@ -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'")