From d815a25b11d8abe0151628fd84282ed48d823750 Mon Sep 17 00:00:00 2001 From: Dhruv Manilawala Date: Tue, 8 Aug 2023 20:15:02 +0530 Subject: [PATCH] Update `StmtMatch` formatting snapshots (#6427) --- .../tests/snapshots/format@statement__match.py.snap | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/crates/ruff_python_formatter/tests/snapshots/format@statement__match.py.snap b/crates/ruff_python_formatter/tests/snapshots/format@statement__match.py.snap index 42bfbfbedd32c..f794cbc12a791 100644 --- a/crates/ruff_python_formatter/tests/snapshots/format@statement__match.py.snap +++ b/crates/ruff_python_formatter/tests/snapshots/format@statement__match.py.snap @@ -90,7 +90,11 @@ match ( # hello pass -match [first, second, third]: # comment # another comment +match [ # comment + first, + second, + third, +]: # another comment case NOT_YET_IMPLEMENTED_Pattern: pass