[GPS] fix component Python declaration to match C++ implementation (#14519)

This commit is contained in:
Olivier ARCHER
2026-03-05 09:22:37 -10:00
committed by GitHub
parent e210e414bd
commit 44d314d069
+1 -1
View File
@@ -34,7 +34,7 @@ AUTO_LOAD = ["sensor"]
CODEOWNERS = ["@coogle", "@ximex"]
gps_ns = cg.esphome_ns.namespace("gps")
GPS = gps_ns.class_("GPS", cg.Component, uart.UARTDevice)
GPS = gps_ns.class_("GPS", cg.PollingComponent, uart.UARTDevice)
GPSListener = gps_ns.class_("GPSListener")
MULTI_CONF = True