When using the system setSuns method to set the Ee on a whole panel, the Ee must be a sequence, not a float as in the documentation. Example in documentation is given as Ee={3: {8: 0.23, 7: 0.45}}. Must use Ee={3: {8: [0.23], 7: [0.45]}} or Ee={3: {8: (0.23,), 7: (0.45,)}} to allow for list unpacking (or "splat").
When using the system setSuns method to set the Ee on a whole panel, the Ee must be a sequence, not a float as in the documentation. Example in documentation is given as Ee={3: {8: 0.23, 7: 0.45}}. Must use Ee={3: {8: [0.23], 7: [0.45]}} or Ee={3: {8: (0.23,), 7: (0.45,)}} to allow for list unpacking (or "splat").