I have the error:
Traceback (most recent call last): File "_________ (removed personal data) default/python/plugins\SDEllipse\SDEllipse.py", line 127, in run self.dlg.progressBar.setValue(0.0) TypeError: setValue(self, value: int): argument 1 has unexpected type 'float'
And I saw that maybe changing the line 127 into self.dlg.progressBar.setValue(0), may work, but I don´t know how to do that.
I´ve tried with this commands:
filepath= r"C:-------default/python/plugins/SDEllipse/SDELLIPSE.py"
pass
def progressbar (self):
self.dlg.progressBar.setValue(0)
But the problem persisted. How do I modify the line 127 or change the setValue?