matthiashh
matthiashh
When expanding a skill like this: ``` skill.setProcessor(Selector()) skill( self.skill("check_if_reached", ""), self.skill("PoseThreeAxis", "pose_three_axis"), ) ``` instead of this ``` skill.setProcessor(Selector()) skill( self.skill("Check", "check_if_reached"), self.skill("PoseThreeAxis", "pose_three_axis"), ) ``` leads to a...
I ran into a couple of warning in the fashion: ``` PluginLoader warn: WARNING: Multiple plugins with name demo_piston_insertion found! [, ] ``` As you might remember you recently restructured...
I am currently looking at the unit tests and quite a lot of them fail on my platform and there could be several reasons for that. ``` ========= Testing json...
What about doing static code analysis with `pylint` or something similar? It seems to catch a lot of errors that can easily be found with static code analysis and could...
First of all thanks for the work put into this tool. One thing I found missing is a visualization of conditions. For example in ```xml ``` the condition `if="$(arg sim)"`...