titibs29 / API_LED_PY

Block comment should start with # FLK-E265
Style
Minor
2 occurrences in this check
block comment should start with '# '
73        gpio.setmode(gpio.BOARD)
74        gpio.setup(pins, gpio.OUT, initial=defaultState)
75
76        #main server77        run(app, server='paste', host='0', port=3000)
78
79    finally:
block comment should start with '# '
69        for pin in pins:
70            states[pin] = defaultState
71
72        #setting up the pins73        gpio.setmode(gpio.BOARD)
74        gpio.setup(pins, gpio.OUT, initial=defaultState)
75