fixed missing comma

This commit is contained in:
2018-09-08 13:30:39 -07:00
parent 998ea261e8
commit a0a92f17ec

View File

@@ -42,11 +42,11 @@ def instant( client, data, cfg ):
return ( cfg.mqttPower, msg ) return ( cfg.mqttPower, msg )
#=========================================================================== #===========================================================================
def price( client,data, cfg ): def price( client, data, cfg ):
msg = { msg = {
"time" : data.TimeUnix, "time" : data.TimeUnix,
"price" : data.Price "price" : data.Price,
"tier" : data.Tier "tier" : data.Tier,
} }
return ( cfg.mqttPrice, msg ) return ( cfg.mqttPrice, msg )