__init__.py 311 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. # Set default logging handler to avoid "No handler found" warnings.
  7. import logging
  8. from logging import NullHandler
  9. logging.getLogger(__name__).addHandler(NullHandler())