diff --git a/crates/ruff_linter/src/rules/pycodestyle/rules/logical_lines/mod.rs b/crates/ruff_linter/src/rules/pycodestyle/rules/logical_lines/mod.rs index 325e4e82c6626..4a8bb4befd821 100644 --- a/crates/ruff_linter/src/rules/pycodestyle/rules/logical_lines/mod.rs +++ b/crates/ruff_linter/src/rules/pycodestyle/rules/logical_lines/mod.rs @@ -121,7 +121,7 @@ impl<'a> IntoIterator for &'a LogicalLines<'a> { /// 2 /// ] /// ``` -#[derive(Clone, Debug)] +#[derive(Debug)] pub(crate) struct LogicalLine<'a> { lines: &'a LogicalLines<'a>, line: &'a Line,