Skip to content

Commit 7873e97

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 4d09888 commit 7873e97

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

modules/atom.error/pymodule.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -221,4 +221,4 @@ PYBIND11_MODULE(error, m) {
221221
py::class_<atom::error::StackTrace>(m, "StackTrace")
222222
.def(py::init<>())
223223
.def("toString", &atom::error::StackTrace::toString);
224-
}
224+
}

modules/atom.extra/pymodule.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ using namespace boost::system;
2323
PYBIND11_MODULE(extra, m) {
2424
m.doc() = "Python bindings for Atom Extra Module";
2525

26-
26+
2727

2828
/*
2929
py::class_<error_category>(m, "ErrorCategory")
@@ -190,7 +190,7 @@ PYBIND11_MODULE(extra, m) {
190190
"Asynchronously receives a JSON object from the WebSocket server");
191191
192192
*/
193-
193+
194194
#if __has_include(<boost/charconv.hpp>)
195195
py::enum_<atom::extra::boost::NumberFormat>(m, "NumberFormat")
196196
.value("GENERAL", atom::extra::boost::NumberFormat::GENERAL)

src/addon/debug/dynamic.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -202,4 +202,4 @@ void DynamicLibraryParser::setOutputFilename(const std::string &filename) {
202202

203203
void DynamicLibraryParser::parse() { impl_->parse(); }
204204

205-
} // namespace lithium::addon
205+
} // namespace lithium::addon

src/addon/debug/dynamic.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ class DynamicLibraryParser {
2121

2222
} // namespace lithium::addon
2323

24-
#endif // LITHIUM_ADDON_DEBUG_DYNAMIC_HPP
24+
#endif // LITHIUM_ADDON_DEBUG_DYNAMIC_HPP

src/atom/algorithm/snowflake.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,4 +120,4 @@ class Snowflake {
120120
};
121121
} // namespace atom::algorithm
122122

123-
#endif // ATOM_ALGORITHM_SNOWFLAKE_HPP
123+
#endif // ATOM_ALGORITHM_SNOWFLAKE_HPP

0 commit comments

Comments
 (0)