Remove self arguments to IProgress, which mypy caught as improper.

This commit is contained in:
Jason R. Coombs 2020-11-23 14:09:46 -05:00
parent dec6f6d647
commit 5f40c562eb

View File

@ -749,7 +749,7 @@ class IProgress(Interface):
"Current amount of progress (in percentage)" "Current amount of progress (in percentage)"
) )
def set_progress(self, value): def set_progress(value):
""" """
Sets the current amount of progress. Sets the current amount of progress.
@ -757,7 +757,7 @@ class IProgress(Interface):
set_progress_total. set_progress_total.
""" """
def set_progress_total(self, value): def set_progress_total(value):
""" """
Sets the total amount of expected progress Sets the total amount of expected progress