Skip to content

Commit

Permalink
Fix Python binding for Type::isBitstreamType
Browse files Browse the repository at this point in the history
  • Loading branch information
MikePopoloski committed Mar 10, 2024
1 parent 1ed2b7a commit 1b1e09b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bindings/python/TypeBindings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ void registerTypes(py::module_& m) {
.def_property_readonly("isBooleanConvertible", &Type::isBooleanConvertible)
.def_property_readonly("isArray", &Type::isArray)
.def_property_readonly("isStruct", &Type::isStruct)
.def_property_readonly("isBitstreamType", &Type::isBitstreamType)
.def_property_readonly("isFixedSize", &Type::isFixedSize)
.def_property_readonly("isSimpleType", &Type::isSimpleType)
.def_property_readonly("isByteArray", &Type::isByteArray)
Expand Down Expand Up @@ -72,6 +71,7 @@ void registerTypes(py::module_& m) {
.def("isAssignmentCompatible", &Type::isAssignmentCompatible, "rhs"_a)
.def("isCastCompatible", &Type::isCastCompatible, "rhs"_a)
.def("isBitstreamCastable", &Type::isBitstreamCastable, "rhs"_a)
.def("isBitstreamType", &Type::isBitstreamType, "destination"_a = false)
.def("isDerivedFrom", &Type::isDerivedFrom, "rhs"_a)
.def("implements", &Type::implements, "rhs"_a)
.def("isValidForRand", &Type::isValidForRand, "rhs"_a)
Expand Down

0 comments on commit 1b1e09b

Please sign in to comment.