Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
ArthurZucker committed Jan 21, 2025
1 parent 46be059 commit 69206e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bindings/python/src/decoders.rs
Original file line number Diff line number Diff line change
Expand Up @@ -664,7 +664,7 @@ impl PyDecodeStream {
#[pyo3(signature = (sequence_ids), text_signature = "(self, sequence_ids)")]
fn with_sequence(&mut self, sequence_ids: Vec<u32>) {
self.ids = sequence_ids;
self.prefix_index = 0;
self.prefix_index = sequence_ids.len();
self.prefix = "".to_string();
}

Expand Down

0 comments on commit 69206e2

Please sign in to comment.