Add commented append slice-len sanity check

epoch_indexing_and_dataviz_layer
Tyler Goodlet 2022-12-22 13:11:38 -05:00
parent f30a48b82c
commit cdec4782f0
1 changed files with 3 additions and 0 deletions

View File

@ -330,6 +330,9 @@ class IncrementalFormatter(msgspec.Struct):
) )
self.xy_nd_stop += append_len self.xy_nd_stop += append_len
profiler('appened xy history: {append_length}') profiler('appened xy history: {append_length}')
# sanity
# slice_ln = post_slice.stop - post_slice.start
# assert append_len == slice_ln
view_changed: bool = False view_changed: bool = False
view_range: tuple[int, int] = (ivl, ivr) view_range: tuple[int, int] = (ivl, ivr)