Skip to content
Snippets Groups Projects
Commit 6a54dde1 authored by Olivier BICHLER's avatar Olivier BICHLER
Browse files

Fixed typo

parent 6ea52b46
No related branches found
No related tags found
2 merge requests!212Version 0.3.0,!186Refactor OperatorImpl for backend/export
Pipeline #55188 canceled
......@@ -22,7 +22,7 @@ bool future_std::operator<(const future_std::any& lhs, const future_std::any& rh
return Aidge::DynamicAttributes::mAnyCompare.at(rhs.type())(lhs, rhs);
}
else if (rhs.type() == typeid(py::object)) {
return Aidge::DynamicAttributes::mAnyCompare.at(rhs.type())(lhs, rhs);
return Aidge::DynamicAttributes::mAnyCompare.at(lhs.type())(lhs, rhs);
}
#endif
else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment