+ whitespace improvement

This commit is contained in:
wmayer
2015-12-27 19:16:05 +01:00
parent fb5fdc3231
commit 214306edc8
2 changed files with 8 additions and 9 deletions

View File

@@ -179,8 +179,8 @@ Py::Object View3DInventorViewerPy::getSoEventManager(const Py::Tuple& args)
Py::Object View3DInventorViewerPy::seekToPoint(const Py::Tuple& args)
{
PyObject* object;
if (!PyArg_ParseTuple(args.ptr(), "O", &object))
throw Py::Exception();
if (!PyArg_ParseTuple(args.ptr(), "O", &object))
throw Py::Exception();
try {
const Py::Tuple tuple(object);
@@ -257,4 +257,4 @@ Py::Object View3DInventorViewerPy::getFocalDistance(const Py::Tuple& args)
catch(...) {
throw Py::Exception("Unknown C++ exception");
}
}
}