From 71ddd1eeda8e1319684c8b2156f5c0c327233b94 Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Thu, 27 Jul 2023 14:45:56 -0400 Subject: [PATCH] Tweaks --- .../pycodestyle/rules/logical_lines/space_around_operator.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/ruff/src/rules/pycodestyle/rules/logical_lines/space_around_operator.rs b/crates/ruff/src/rules/pycodestyle/rules/logical_lines/space_around_operator.rs index 33f6e338f84414..b913550c77a030 100644 --- a/crates/ruff/src/rules/pycodestyle/rules/logical_lines/space_around_operator.rs +++ b/crates/ruff/src/rules/pycodestyle/rules/logical_lines/space_around_operator.rs @@ -147,14 +147,14 @@ impl Violation for TabAfterComma { } /// ## What it does -/// Checks for extraneous whitespace after a comma, +/// Checks for extraneous whitespace after a comma. /// /// ## Why is this bad? /// According to the `black` code style, commas should be followed by a single space. /// /// ## Example /// ```python -/// a = 4, 5 +/// a = 4, 5 /// ``` /// /// Use instead: