Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Nov 9, 2024
1 parent ebd9ec5 commit 13c671f
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion cmake/find_packages.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ find_package(fmt REQUIRED)
find_package(Readline REQUIRED)
find_package(pybind11 CONFIG REQUIRED)
find_package(Python COMPONENTS Interpreter REQUIRED)
include_directories(${pybind11_INCLUDE_DIRS} ${Python_INCLUDE_DIRS})
include_directories(${pybind11_INCLUDE_DIRS} ${Python_INCLUDE_DIRS})
2 changes: 1 addition & 1 deletion cmake/install_paths.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ if(WIN32)
set(CMAKE_INSTALL_PREFIX "C:/Program Files/LithiumServer")
elseif(LINUX)
set(CMAKE_INSTALL_PREFIX "/usr/lithium")
endif()
endif()
2 changes: 1 addition & 1 deletion cmake/options.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ if(ENABLE_WEB_SERVER)
endif()
if(ENABLE_WEB_CLIENT)
add_compile_definitions(ENABLE_WEB_CLIENT_FLAG=1)
endif()
endif()
2 changes: 1 addition & 1 deletion cmake/policies.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ if(POLICY CMP0003)
endif()
if(POLICY CMP0043)
cmake_policy(SET CMP0043 NEW)
endif()
endif()
2 changes: 1 addition & 1 deletion cmake/python_environment.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -114,4 +114,4 @@ execute_process(
COMMAND ${CMAKE_COMMAND} -E touch "${CMAKE_BINARY_DIR}/check_marker.txt"
RESULT_VARIABLE result
)
endif()
endif()
2 changes: 1 addition & 1 deletion src/target/reader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -233,4 +233,4 @@ void DictWriter::writeRow(
const std::unordered_map<std::string, std::string>& row) {
pimpl_->writeRow(row);
}
} // namespace lithium::target
} // namespace lithium::target
2 changes: 1 addition & 1 deletion src/target/reader.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,4 @@ class DictWriter {
};
} // namespace lithium::target

#endif // LITHIUM_TARGET_READER_CSV
#endif // LITHIUM_TARGET_READER_CSV

0 comments on commit 13c671f

Please sign in to comment.