Skip to content

Commit 30466a5

Browse files
committed
Test commit
1 parent 40bddf4 commit 30466a5

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

crates/ruff_python_formatter/src/statement/stmt_with.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -302,8 +302,7 @@ impl<'a> WithItemsLayout<'a> {
302302
}
303303
}
304304

305-
let can_parenthesize = context.options().target_version() >= PythonVersion::PY39
306-
|| are_with_items_parenthesized(with, context)?;
305+
let can_parenthesize = true; // are_with_items_parenthesized(with, context)?;
307306

308307
// If the target version doesn't support parenthesized context managers and they aren't
309308
// parenthesized by the user, bail out.

0 commit comments

Comments
 (0)