When exporting a skin with the Tasty (IK) rig and Scale Down set to false, the plugin would fail in the middle of setting up the Tasty Rig (on line 1912), causing the IK components to not get set up. The issue was that in python, (x, y, z) * 100 is (x, y, z, x, y, z,, ... ) instead of (100x, 100y, 100z). It looks like other places above used Vector(x, y, z) when multiplying with scale, so I changed the line that was throwing the error to the same format
When exporting a skin with the Tasty (IK) rig and Scale Down set to false, the plugin would fail in the middle of setting up the Tasty Rig (on line 1912), causing the IK components to not get set up. The issue was that in python, (x, y, z) * 100 is (x, y, z, x, y, z,, ... ) instead of (100x, 100y, 100z). It looks like other places above used Vector(x, y, z) when multiplying with scale, so I changed the line that was throwing the error to the same format