14 lines
311 B
Python
Executable File
14 lines
311 B
Python
Executable File
from .consts import C__CATG__CPU
|
|
from .category import IDoitCategory
|
|
|
|
|
|
class IDoitCpu(IDoitCategory):
|
|
|
|
CATEGORY = C__CATG__CPU
|
|
|
|
def __init__(self, cfg):
|
|
super().__init__(cfg, self.CATEGORY)
|
|
|
|
def convert_field_with_name_frequency(self, data):
|
|
return float(data['frequency']['title'])
|