Start: apply clang format
This commit is contained in:
@@ -27,13 +27,15 @@
|
||||
#include <Base/PyObjectBase.h>
|
||||
|
||||
|
||||
namespace Start {
|
||||
class Module : public Py::ExtensionModule<Module>
|
||||
namespace Start
|
||||
{
|
||||
class Module: public Py::ExtensionModule<Module>
|
||||
{
|
||||
public:
|
||||
Module() : Py::ExtensionModule<Module>("Start")
|
||||
Module()
|
||||
: Py::ExtensionModule<Module>("Start")
|
||||
{
|
||||
initialize("This module is the Start module."); // register with Python
|
||||
initialize("This module is the Start module.");// register with Python
|
||||
}
|
||||
|
||||
private:
|
||||
@@ -44,7 +46,7 @@ PyObject* initModule()
|
||||
return Base::Interpreter().addModule(new Module);
|
||||
}
|
||||
|
||||
} // namespace Start
|
||||
}// namespace Start
|
||||
|
||||
/* Python entry */
|
||||
PyMOD_INIT_FUNC(Start)
|
||||
|
||||
Reference in New Issue
Block a user