File: __init__.py

package info (click to toggle)
python-umodbus 1.0.4-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 456 kB
  • sloc: python: 1,944; makefile: 166; sh: 5
file content (7 lines) | stat: -rw-r--r-- 153 bytes parent folder | download
1
2
3
4
5
6
7
from logging import getLogger, NullHandler

log = getLogger('uModbus')
log.addHandler(NullHandler())

from .config import Config  # NOQA
conf = Config()