From 911ed605ed4261ef372a0d84ead99cdb9717a40f Mon Sep 17 00:00:00 2001 From: Ben Deane Date: Thu, 18 Jun 2026 09:25:09 -0600 Subject: [PATCH] :construction_worker: Use black for python formatting Problem: - The default python formatter from CICD is ruff, but this branch is not set up to use it. Solution: - Continue using black. --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0d7df84..ada9487 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,6 +7,8 @@ project( DESCRIPTION "A header-only C++ library that polyfills the standard library." ) +set(INFRA_PYTHON_FORMATTER black) + include(cmake/get_cpm.cmake) if(PROJECT_IS_TOP_LEVEL) cpmaddpackage("gh:intel/cicd-repo-infrastructure#dev")