pytransitions / transitions

A lightweight, object-oriented finite state machine implementation in Python with many extensions
MIT License
5.49k stars 524 forks source link

README.md - Missing "Machine" import #541

Closed kauedg closed 2 years ago

kauedg commented 2 years ago

The main README.md file, section "Non-Quickstart/State", is missing an import in the example.

# import Machine and State class
from transitions import State

It should be

# import Machine and State class
from transitions import Machine, State