mirror of
https://github.com/esphome/esphome.git
synced 2026-09-17 10:08:40 +00:00
[GPS] fix component Python declaration to match C++ implementation (#14519)
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user