Skip to content

Commit a47e751

Browse files
fix lint
1 parent bc12806 commit a47e751

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

crates/core/src/subscription/module_subscription_manager.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1117,12 +1117,11 @@ impl SubscriptionManager {
11171117
edge.rhs_join_col,
11181118
&row.elements[edge.lhs_join_col.idx()],
11191119
)
1120-
// This read should always succeed, and it's a bug if it doesn't.
11211120
.expect("This read should always succeed, and it's a bug if it doesn't")
11221121
.next()
11231122
.map(|row| {
1124-
// Similarly this read should always succeed
1125-
row.read_col(edge.rhs_col).expect("This read should always succeed, and it's a bug if it doesn't")
1123+
row.read_col(edge.rhs_col)
1124+
.expect("This read should always succeed, and it's a bug if it doesn't")
11261125
})
11271126
}
11281127

0 commit comments

Comments
 (0)