Skip to content

Commit

Permalink
Refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
ConnectDIY committed May 7, 2024
1 parent 1a4fe64 commit be8f789
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion recon_lw/core/StateStream.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def __init__(self,
state_transition_func,
events_saver: IEventsSaver,
combine_instantenious_snapshots=True,
get_next_update_func2 = None
get_next_update_func2=None
) -> None:
"""
Expand All @@ -30,6 +30,12 @@ def __init__(self,
state_transition_func:
events_saver:
combine_instantenious_snapshots:
get_next_update_func2:
Note:
1. Can be used only `get_next_update_func` or `get_next_update_func2`
at the same time.
"""
self._get_next_update_func = get_next_update_func
self._get_snapshot_id_func = get_snapshot_id_func
Expand Down

0 comments on commit be8f789

Please sign in to comment.