Skip to content

Commit 154e280

Browse files
committed
start point initallly -1
1 parent 5d9bf1c commit 154e280

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

zephyr_ml/core.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class GuideHandler:
3333
def __init__(self, producers_and_getters, set_methods):
3434
self.cur_term = 0
3535
self.current_step = -1
36-
self.start_point = 0
36+
self.start_point = -1
3737
self.producers_and_getters = producers_and_getters
3838
self.set_methods = set_methods
3939

@@ -187,7 +187,7 @@ def try_perform_inconsistent_producer_step( # add using stale and overwriting
187187
prev_key_method = self.producers_and_getters[prev_step][0][0].__name__
188188
LOGGER.warning(f"Unable to perform {name} because you are performing a key method at\
189189
step {next_step} but the result of the previous step, \
190-
step {prev_step}, is not up to date.\
190+
step {prev_step}, is STALE.\
191191
If you already have the data for step {next_step}, \
192192
you can use the corresponding set method: {corr_set_method}.\
193193
Otherwise, please perform step {prev_step} \

0 commit comments

Comments
 (0)