Skip to content
This repository was archived by the owner on Nov 28, 2025. It is now read-only.

Commit 9e5c620

Browse files
committed
Format
1 parent 47cd1e8 commit 9e5c620

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

src/python-module-py.cpp

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -96,15 +96,7 @@ static PyMethodDef functions[] = {
9696

9797
#if PY_MAJOR_VERSION >= 3
9898
static struct PyModuleDef SotDynamicPinocchioModuleDef = {
99-
PyModuleDef_HEAD_INIT,
100-
"wrap",
101-
NULL,
102-
0,
103-
functions,
104-
NULL,
105-
NULL,
106-
NULL,
107-
NULL};
99+
PyModuleDef_HEAD_INIT, "wrap", NULL, 0, functions, NULL, NULL, NULL, NULL};
108100
#define INITERROR return NULL
109101
#else
110102
#define INITERROR return
@@ -136,4 +128,3 @@ void initwrap(void)
136128
#ifdef __cplusplus
137129
} // extern "C"
138130
#endif
139-

0 commit comments

Comments
 (0)