Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7213c7 commit 2174f80Copy full SHA for 2174f80
1 file changed
Modules/_curses_panel.c
@@ -474,11 +474,11 @@ init_curses_panel(void)
474
{
475
PyObject *m, *d, *v;
476
477
- /* Initialize object type */
478
- PyCursesPanel_Type.ob_type = &PyType_Type;
+ /* Initialize object type */
+ PyCursesPanel_Type.ob_type = &PyType_Type;
479
480
import_curses();
481
-
+
482
/* Create the module and add the functions */
483
m = Py_InitModule("_curses_panel", PyCurses_methods);
484
d = PyModule_GetDict(m);
@@ -492,6 +492,4 @@ init_curses_panel(void)
492
PyDict_SetItemString(d, "version", v);
493
PyDict_SetItemString(d, "__version__", v);
494
Py_DECREF(v);
495
496
}
497
0 commit comments