[Python] Remove unused variable

warning: unused variable 'py_func_obj' [-Wunused-variable]
  PyObject *py_func_obj = m_py_obj;
llvm-svn: 373686
This commit is contained in:
Jonas Devlieghere 2019-10-04 01:38:57 +00:00
parent 772e266fbf
commit 2d511023c6
1 changed files with 0 additions and 1 deletions

View File

@ -891,7 +891,6 @@ PythonCallable::ArgInfo PythonCallable::GetNumInitArguments() const {
ArgInfo result = {0, false, false, false};
if (!IsValid())
return result;
PyObject *py_func_obj = m_py_obj;
PythonObject __init__ = GetAttributeValue("__init__");
if (__init__.IsValid() ) {