Skip to content

Commit

Permalink
Merge 063d91f into 38f6435
Browse files Browse the repository at this point in the history
  • Loading branch information
ahcorde authored May 12, 2023
2 parents 38f6435 + 063d91f commit 22b5cdc
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion python/src/sdf/pyError.cc
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,14 @@ void defineError(pybind11::object module)
sdf::ErrorCode::MODEL_PLACEMENT_FRAME_INVALID)
.value("VERSION_DEPRECATED", sdf::ErrorCode::VERSION_DEPRECATED)
.value("MERGE_INCLUDE_UNSUPPORTED",
sdf::ErrorCode::MERGE_INCLUDE_UNSUPPORTED);
sdf::ErrorCode::MERGE_INCLUDE_UNSUPPORTED)
.value("PARAMETER_ERROR", sdf::ErrorCode::PARAMETER_ERROR)
.value("UNKNOWN_PARAMETER_TYPE", sdf::ErrorCode::UNKNOWN_PARAMETER_TYPE)
.value("FATAL_ERROR", sdf::ErrorCode::FATAL_ERROR)
.value("WARNING", sdf::ErrorCode::WARNING)
.value("JOINT_AXIS_EXPRESSED_IN_INVALID", sdf::ErrorCode::JOINT_AXIS_EXPRESSED_IN_INVALID)
.value("CONVERSION_ERROR", sdf::ErrorCode::CONVERSION_ERROR)
.value("PARSING_ERROR", sdf::ErrorCode::PARSING_ERROR);
}
} // namespace python
} // namespace SDF_VERSION_NAMESPACE
Expand Down

0 comments on commit 22b5cdc

Please sign in to comment.