Skip to content

Commit c9f3789

Browse files
committed
fix2?
1 parent d62d795 commit c9f3789

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src_c/geometry.c

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@
33

44
static PyMethodDef geometry_methods[] = {{NULL, NULL, 0, NULL}};
55

6-
static char _pg_module_doc[] =
7-
"Module for the Line, Circle and Polygon objects\n";
8-
96
MODINIT_DEFINE(geometry)
107
{
118
PyObject *module, *apiobj;
@@ -14,7 +11,7 @@ MODINIT_DEFINE(geometry)
1411
static struct PyModuleDef _module = {
1512
.m_base = PyModuleDef_HEAD_INIT,
1613
.m_name = "geometry",
17-
.m_doc = _pg_module_doc,
14+
.m_doc = "Module for the Line, Circle and Polygon objects\n",
1815
.m_size = -1,
1916
.m_methods = geometry_methods,
2017
};

0 commit comments

Comments
 (0)