TypeError: Gauge.SetValue(): argument 1 has unexpected type 'float'
Traceback (most recent call last):
File "/home/aaronw/.local/share/kicad/8.0/3rdparty/plugins/com_github_pcbway_PCBWay-Fabrication-Toolkit-for-KiCad/plugin.py", line 43, in updateDisplay
self.m_gaugeStatus.SetValue(status.data)
The fix is to change this to:
self.m_gaugeStatus.SetValue(int(status.data))
TypeError: Gauge.SetValue(): argument 1 has unexpected type 'float' Traceback (most recent call last): File "/home/aaronw/.local/share/kicad/8.0/3rdparty/plugins/com_github_pcbway_PCBWay-Fabrication-Toolkit-for-KiCad/plugin.py", line 43, in updateDisplay self.m_gaugeStatus.SetValue(status.data)
The fix is to change this to: self.m_gaugeStatus.SetValue(int(status.data))