9 lines
169 B
Python
9 lines
169 B
Python
|
# -*- test-case-name: automat -*-
|
||
|
from ._methodical import MethodicalMachine
|
||
|
from ._core import NoTransition
|
||
|
|
||
|
__all__ = [
|
||
|
'MethodicalMachine',
|
||
|
'NoTransition',
|
||
|
]
|