()
| 179 | |
| 180 | @staticmethod |
| 181 | def avg_temp() -> int: |
| 182 | temps: List[float] = [i.temperature for i in SystemInfo.get_cpu_info()] |
| 183 | return int(sum(temps) / len(temps)) |
| 184 | |
| 185 | @staticmethod |
| 186 | def turbo_on() -> Tuple[bool | None, bool | None]: |
no test coverage detected