[pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci
This commit is contained in:
pre-commit-ci[bot]
2023-09-12 13:03:02 +00:00
committed by WandererFan
parent a207d11fa4
commit e92ed45df9
435 changed files with 2669 additions and 2645 deletions

View File

@@ -38,7 +38,7 @@ public:
Module()
: Py::ExtensionModule<Module>("Spreadsheet")
{
initialize("This module is the Spreadsheet module.");// register with Python
initialize("This module is the Spreadsheet module."); // register with Python
}
private:
@@ -48,7 +48,7 @@ PyObject* initModule()
{
return Base::Interpreter().addModule(new Module);
}
}// namespace Spreadsheet
} // namespace Spreadsheet
/* Python entry */
PyMOD_INIT_FUNC(Spreadsheet)