Skip to content

Commit

Permalink
Part: [skip ci] fix two little copy&paste errors
Browse files Browse the repository at this point in the history
  • Loading branch information
wwmayer committed Dec 17, 2019
1 parent cbe19e3 commit 6af98e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Mod/Part/App/TopoShapePyImp.cpp
Expand Up @@ -2661,7 +2661,7 @@ PyObject* TopoShapePy::distToShape(PyObject *args)
{
Py::Tuple tup(2);
tup[0] = Py::Float(u1);
tup[1] = Py::None();
tup[1] = Py::Float(v1);
param1 = tup;
}
break;
Expand Down Expand Up @@ -2695,7 +2695,7 @@ PyObject* TopoShapePy::distToShape(PyObject *args)
{
Py::Tuple tup(2);
tup[0] = Py::Float(u2);
tup[1] = Py::None();
tup[1] = Py::Float(v2);
param2 = tup;
}
break;
Expand Down

0 comments on commit 6af98e0

Please sign in to comment.