MCPcopy Create free account
hub / github.com/pyfa-org/Pyfa / __init__

Method __init__

gui/utils/progressHelper.py:3–11  ·  view source on GitHub ↗
(self, message, maximum=None, callback=None)

Source from the content-addressed store, hash-verified

1class ProgressHelper:
2
3 def __init__(self, message, maximum=None, callback=None):
4 self.message = message
5 self.current = 0
6 self.maximum = maximum
7 self.workerWorking = True
8 self.dlgWorking = True
9 self.error = None
10 self.callback = callback
11 self.cbArgs = []
12
13 @property
14 def working(self):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected