maker-faire-bot / utils.py
aldan.creo
First Commit
8f86068
raw
history blame contribute delete
No virus
238 Bytes
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