Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2174f80

Browse files
committed
init_curses_panel(): Be more consistent with indentation and blank lines.
1 parent e7213c7 commit 2174f80

1 file changed

Lines changed: 3 additions & 5 deletions

File tree

Modules/_curses_panel.c

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -474,11 +474,11 @@ init_curses_panel(void)
474474
{
475475
PyObject *m, *d, *v;
476476

477-
/* Initialize object type */
478-
PyCursesPanel_Type.ob_type = &PyType_Type;
477+
/* Initialize object type */
478+
PyCursesPanel_Type.ob_type = &PyType_Type;
479479

480480
import_curses();
481-
481+
482482
/* Create the module and add the functions */
483483
m = Py_InitModule("_curses_panel", PyCurses_methods);
484484
d = PyModule_GetDict(m);
@@ -492,6 +492,4 @@ init_curses_panel(void)
492492
PyDict_SetItemString(d, "version", v);
493493
PyDict_SetItemString(d, "__version__", v);
494494
Py_DECREF(v);
495-
496495
}
497-

0 commit comments

Comments
 (0)