We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6846f23 commit faaf416Copy full SHA for faaf416
src/nextline_schedule/auto/state_machine/config.py
@@ -70,7 +70,7 @@
70
'''
71
72
73
-AUTO_STATE_CONFIG = {
+_AUTO_SUB_STATE_CONFIG = {
74
'name': 'auto',
75
'children': ['waiting', 'pulling', 'running'],
76
'initial': 'waiting',
@@ -84,7 +84,7 @@
84
85
CONFIG = {
86
'name': 'global',
87
- 'states': ['created', 'off', AUTO_STATE_CONFIG],
+ 'states': ['created', 'off', _AUTO_SUB_STATE_CONFIG],
88
'transitions': [
89
['start', 'created', 'off'],
90
['turn_on', 'off', 'auto'],
0 commit comments