From 5f28912a0d90d2f22f59c06e0107964ab0b4fd8d Mon Sep 17 00:00:00 2001 From: Zanie Date: Fri, 27 Oct 2023 12:29:36 -0500 Subject: [PATCH] Remove format ignore lines re --- python/ruff-ecosystem/ruff_ecosystem/format.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/python/ruff-ecosystem/ruff_ecosystem/format.py b/python/ruff-ecosystem/ruff_ecosystem/format.py index 697e5dd4c2..609c0d4aa3 100644 --- a/python/ruff-ecosystem/ruff_ecosystem/format.py +++ b/python/ruff-ecosystem/ruff_ecosystem/format.py @@ -22,9 +22,6 @@ if TYPE_CHECKING: from ruff_ecosystem.projects import ClonedRepository -FORMAT_IGNORE_LINES = re.compile("^warning: `ruff format` is a work-in-progress.*") - - def markdown_format_result(result: Result) -> str: lines = [] total_lines_removed = total_lines_added = 0