titibs29 / API_LED_PY

Missing whitespace after ,, ;, or : FLK-E231
Style
Minor
5 months agoa year old
missing whitespace after ','
24
25@app.get('/setAll/<state:int>')
26def setAll(state):
27    if state not in (1,0):28        abort(code=404, text= "invalid state "+str(state))
29    gpio.output(pins, state)
30    for pin in states: