Skip to content

Commit d909b96

Browse files
pre-commit-ci[bot]henryiii
authored andcommitted
style: pre-commit fixes
1 parent ad3dd99 commit d909b96

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

tests/test_cmake_build/installed_embed/CMakeLists.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@ cmake_minimum_required(VERSION 3.15...4.2)
33
project(test_installed_embed CXX)
44

55
if(PYBIND11_FINDPYTHON)
6-
find_package(Python COMPONENTS Interpreter REQUIRED)
6+
find_package(
7+
Python
8+
COMPONENTS Interpreter
9+
REQUIRED)
710
endif()
811
find_package(pybind11 CONFIG REQUIRED)
912
message(STATUS "Found pybind11 v${pybind11_VERSION}: ${pybind11_INCLUDE_DIRS}")

tests/test_cmake_build/subdirectory_embed/CMakeLists.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@ cmake_minimum_required(VERSION 3.15...4.2)
33
project(test_subdirectory_embed CXX)
44

55
if(PYBIND11_FINDPYTHON)
6-
find_package(Python COMPONENTS Interpreter REQUIRED)
6+
find_package(
7+
Python
8+
COMPONENTS Interpreter
9+
REQUIRED)
710
endif()
811

912
set(PYBIND11_INSTALL

0 commit comments

Comments
 (0)