Skip to content

Commit

Permalink
reduce diff
Browse files Browse the repository at this point in the history
  • Loading branch information
picnixz committed Aug 24, 2024
1 parent ba9b0e1 commit 40fe4a5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Modules/_cursesmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -4026,10 +4026,10 @@ static PyObject *
_curses_update_lines_cols_impl(PyObject *module)
/*[clinic end generated code: output=423f2b1e63ed0f75 input=5f065ab7a28a5d90]*/
{
CHECK_RET_FLAG_OR_ABORT(update_lines_cols());
if (!update_lines_cols()) {
return NULL;
}
Py_RETURN_NONE;
abort:
return NULL;
}

#endif
Expand Down

0 comments on commit 40fe4a5

Please sign in to comment.