From eb53f12b555c6fe039a029c0dd0bf35f11828720 Mon Sep 17 00:00:00 2001 From: Scott K Logan Date: Tue, 9 Apr 2024 12:00:45 -0400 Subject: [PATCH] Suppress flake8 A005 in existing colcon API (#636) Rather than suppress A005 completely, we can ignore it in our existing API to prevent new A005 violations from appearing. --- setup.cfg | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/setup.cfg b/setup.cfg index 640bf8b21..85391702f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -156,6 +156,10 @@ colcon_core.task.python.template = *.em [flake8] import-order-style = google +per-file-ignores = + colcon_core/distutils/__init__.py:A005 + colcon_core/logging.py:A005 + colcon_core/subprocess.py:A005 [coverage:run] source = colcon_core