from services.base import Base from models.ability_estimation import AbilityEstimation class AbilityEstimationService(Base): ACTION = 'abilityEstimation' def process(self): attributes = self.service_attributes() ability_estimation = AbilityEstimation.parse_obj(attributes) results = ability_estimation.calculate() return None