9 lines
176 B
Python
9 lines
176 B
Python
|
import enum
|
||
|
|
||
|
|
||
|
#off = states.On.to(states.Off)
|
||
|
#on = states.Off.to(states.On)
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
WhitelistMachine()._graph().write_png("./whitelist.png")
|