irt-service/app/services/ability_estimation_service.py
2023-09-15 14:29:55 +00:00

13 lines
349 B
Python

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