(self, *args, **kwargs)
| 8 | |
| 9 | class FakeTracker: |
| 10 | def __init__(self, *args, **kwargs): |
| 11 | self.kwargs = kwargs |
| 12 | self.stopped = 0 |
| 13 | self._conf = {"output_file": "emissions.csv"} |
| 14 | |
| 15 | def start(self): |
| 16 | return None |
nothing calls this directly
no outgoing calls
no test coverage detected