Source code for obci.utils.context

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Author:
#     Mateusz KruszyƄski <mateusz.kruszynski@gmail.com>
from . import openbci_logging


[docs]def get_dummy_context(name): d = {'logger': openbci_logging.get_dummy_logger(name)} return d
[docs]def get_new_context(): return {}