Skip to content
Snippets Groups Projects
Commit 381e68e2 authored by Manuel Günther's avatar Manuel Günther
Browse files

Removed duplicated constants from c module

parent 4faab726
No related branches found
No related tags found
No related merge requests found
......@@ -91,9 +91,6 @@ static PyObject* create_module (void) {
auto m_ = make_safe(m);
/* register some constants */
if (PyModule_AddIntConstant(m, "__api_version__", BOB_IO_BASE_API_VERSION) < 0) return 0;
if (PyModule_AddStringConstant(m, "__version__", BOB_EXT_MODULE_VERSION) < 0) return 0;
if (!init_File(m)) return 0;
if (!init_HDF5File(m)) return 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment