__init__.py 318 B

12345678910111213
  1. # -*- coding: utf-8 -*-
  2. """Acme sample module.
  3. :copyright: (c) 2019 by Basti Tee.
  4. :license: Apache 2.0, see LICENSE for more details.
  5. """
  6. from .api import *
  7. from logging import getLogger, NullHandler
  8. # Set default logging handler to avoid "No handler found" warnings.
  9. getLogger(__name__).addHandler(NullHandler())