removed trailing spaces

This commit is contained in:
AaronYoung5
2024-12-17 12:57:48 -05:00
parent 287256e63f
commit 3ef5ebcf01
+3 -3
View File
@@ -983,10 +983,10 @@ PYBIND11_MODULE(_specs, m) {
[](raw::MjsPlugin& self) { mjs_delete(self.element); });
// ============================= MJVISUAL ====================================
mjVisual.def_property(
"global_",
"global_",
[](raw::MjVisual& self) -> raw::MjVisualGlobal& { return self.global; },
[](raw::MjVisual& self, raw::MjVisualGlobal& value) {
self.global = value;
[](raw::MjVisual& self, raw::MjVisualGlobal& value) {
self.global = value;
});
#include "specs.cc.inc"