updated doc to reflect python style boolean

This commit is contained in:
Syed Hussaini 2022-04-08 22:13:57 -05:00 committed by Kyle Brown
parent 6002ad33e1
commit 0cb69651c8

View File

@ -7,7 +7,7 @@ from kmk.module.cg_swap import CgSwap
# cg_swap disabled on startup
cg_swap = CgSwap()
# cg_swap enabled on startup
# cg_swap = CgSwap(true)
# cg_swap = CgSwap(cg_swap_enable=True)
keyboard.modules.append(cg_swap)
```