Skip to content

Commit f96a5a1

Browse files
committed
fix docs
1 parent bd1bfa2 commit f96a5a1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bindings/python/src/pipeline/node/internal/XLinkInBindings.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ void bind_xlinkin(pybind11::module& m, void* pCallstack) {
1212
using namespace dai::node::internal;
1313

1414
// Node and Properties declare upfront
15-
py::class_<XLinkInProperties> xlinkInProperties(m, "XLinkInProperties", DOC(dai, XLinkInProperties));
15+
py::class_<XLinkInProperties> xlinkInProperties(m, "XLinkInProperties", DOC(dai, internal, XLinkInProperties));
1616
auto xlinkIn = ADD_NODE_INTERNAL(XLinkIn);
1717

1818
///////////////////////////////////////////////////////////////////////

bindings/python/src/pipeline/node/internal/XLinkOutBindings.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ void bind_xlinkout(pybind11::module& m, void* pCallstack) {
1212
using namespace dai::node::internal;
1313

1414
// Node and Properties declare upfront
15-
py::class_<XLinkOutProperties> xlinkOutProperties(m, "XLinkOutProperties", DOC(dai, XLinkOutProperties));
15+
py::class_<XLinkOutProperties> xlinkOutProperties(m, "XLinkOutProperties", DOC(dai, internal, XLinkOutProperties));
1616
auto xlinkOut = ADD_NODE_INTERNAL(XLinkOut);
1717

1818
///////////////////////////////////////////////////////////////////////

0 commit comments

Comments
 (0)