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 )
#===========================================================================
def price( client,data, cfg ):
def price( client, data, cfg ):
msg = {
"time" : data.TimeUnix,
"price" : data.Price
"tier" : data.Tier
"price" : data.Price,
"tier" : data.Tier,
}
return ( cfg.mqttPrice, msg )