Skip to content

Commit

Permalink
Rename local variable
Browse files Browse the repository at this point in the history
Follow the naming convention for variables that is used in the nearest
functions.
  • Loading branch information
esuldin committed Aug 18, 2024
1 parent d1c9de9 commit 8db0907
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyitt.native/extensions/python.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ void clear_error_indicator()
Py_XDECREF(value);
Py_XDECREF(traceback);
#else
PyObject* ex = PyErr_GetRaisedException();
Py_XDECREF(ex);
PyObject* exception = PyErr_GetRaisedException();
Py_XDECREF(exception);
#endif
}

Expand Down

0 comments on commit 8db0907

Please sign in to comment.