From f1bd9c60bcef85c0c07f88bcfb9bffc00353fd40 Mon Sep 17 00:00:00 2001 From: Scott K Logan Date: Wed, 12 Jun 2024 14:59:21 -0500 Subject: [PATCH] Suppress flake8 A005 in existing API This is a new check, and addressing the check's concern would change the public API of the package. Suppress the existing violation specifically and continue using the check to prevent new code from violating the rule. --- setup.cfg | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.cfg b/setup.cfg index bc63a42..5256483 100644 --- a/setup.cfg +++ b/setup.cfg @@ -70,6 +70,8 @@ colcon_core.verb = [flake8] import-order-style = google +per-file-ignores = + colcon_rerun/logging.py:A005 [coverage:run] source = colcon_rerun