(self)
| 44 | """ |
| 45 | |
| 46 | def __init__(self): |
| 47 | self.state_store = get_state_store() |
| 48 | if HAS_PSUTIL: |
| 49 | self._process = psutil.Process(os.getpid()) |
| 50 | else: |
| 51 | self._process = None |
| 52 | |
| 53 | @property |
| 54 | def tokens_used(self) -> int: |
nothing calls this directly
no test coverage detected