Skip to content

Commit b88ad69

Browse files
committed
resolved errors
1 parent 2ace503 commit b88ad69

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pydatastructs/graphs/_backend/cpp/algorithms.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ static PyMethodDef bfs_PyMethodDef[] = {
88

99
static struct PyModuleDef bfs_module = {
1010
PyModuleDef_HEAD_INIT,
11-
"bfs",
11+
"_bfs",
1212
"BFS algorithms module",
1313
-1,
1414
bfs_PyMethodDef
1515
};
1616

17-
PyMODINIT_FUNC PyInit_bfs(void) {
17+
PyMODINIT_FUNC PyInit__bfs(void) {
1818
PyObject *module = PyModule_Create(&bfs_module);
1919
if (module == NULL) return NULL;
2020
return module;

0 commit comments

Comments
 (0)