Skip to content

Commit

Permalink
Fix param name
Browse files Browse the repository at this point in the history
  • Loading branch information
jleibs authored and teh-cmc committed Oct 11, 2024
1 parent d4ac32c commit 9b30391
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion rerun_py/rerun_bindings/rerun_bindings.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class RecordingView:
Filter the view to only include data at the given index values.
The index values returned will be the intersection between the provided values and the
original index.
original index values.
This requires index values to be a precise match. Index values in Rerun are
represented as i64 sequence counts or nanoseconds. This API does not expose an interface
Expand Down
6 changes: 3 additions & 3 deletions rerun_py/src/dataframe.rs
Original file line number Diff line number Diff line change
Expand Up @@ -554,11 +554,11 @@ impl PyRecordingView {
})
}

fn filter_is_not_null(&self, component: AnyComponentColumn) -> Self {
let component = component.into_selector();
fn filter_is_not_null(&self, column: AnyComponentColumn) -> Self {
let column = column.into_selector();

let mut query_expression = self.query_expression.clone();
query_expression.filtered_point_of_view = Some(component);
query_expression.filtered_point_of_view = Some(column);

Self {
recording: self.recording.clone(),
Expand Down

0 comments on commit 9b30391

Please sign in to comment.