7 lines
95 B
Python
7 lines
95 B
Python
|
class CpuMonitor:
|
||
|
def __init__(self):
|
||
|
self.stats = {}
|
||
|
|
||
|
def update(self):
|
||
|
self.stats = {}
|