We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
clippy::redundant_locals
1 parent cf9fc5e commit fefa450Copy full SHA for fefa450
hydroflow_lang/src/graph/hydroflow_graph.rs
@@ -810,6 +810,8 @@ impl HydroflowGraph {
810
811
{
812
// Determine pull and push halves of the `Pivot`.
813
+ #[allow(unknown_lints)]
814
+ #[allow(clippy::redundant_locals)] // https://github.com/rust-lang/rust-clippy/issues/11290
815
let pull_to_push_idx = pull_to_push_idx;
816
let pull_ident =
817
self.node_as_ident(subgraph_nodes[pull_to_push_idx - 1], false);
0 commit comments