3a4b73101c0e418c701f5754a22e3cf83d14ad34
[quizzer.git] / quizzer / __init__.py
1 """Break learning up into small task-based tests for focused study
2 """
3
4 import logging as _logging
5
6
7 __version__ = '0.1'
8
9 LOG = _logging.getLogger(__name__)
10 LOG.setLevel(_logging.ERROR)