Remove unused variables

This commit is contained in:
Richard Berger
2021-04-06 17:10:16 -04:00
parent b6776ca3de
commit 0ae75aabcd
2 changed files with 1 additions and 2 deletions

View File

@ -117,7 +117,7 @@ PythonImpl::~PythonImpl()
// shutdown Python interpreter
if (!external_interpreter) {
PyGILState_STATE gstate = PyGILState_Ensure();
PyGILState_Ensure();
Py_Finalize();
}