(self)
| 171 | self._tooltip.SetTip("%.2f/%.2f" % (self._value, self._max_range if self._max_range > 0.01 else 0)) |
| 172 | |
| 173 | def GetValue(self): |
| 174 | return self._value |
| 175 | |
| 176 | def SetValue(self, value, animate=True): |
| 177 | """ Sets the current position of the gauge. """ |
no outgoing calls
no test coverage detected