__init__.py 299 B

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