File size: 238 Bytes
8f86068
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
from typing import Dict
import logging

logger = logging.getLogger(__file__)



def add_result(result: Dict):
    """
    Adds the result to the dataset and stores it to disk
    """
    logger.info(f"Logging result: {result}")
    return