changed relative imports to absolute; renamed TelegramBuffer.put to TelegramBuffer.append;

This commit is contained in:
Nigel Dokter
2017-01-09 20:15:55 +01:00
parent 11672d0512
commit 21334e5a0a
6 changed files with 25 additions and 24 deletions

View File

@@ -3,9 +3,9 @@ import re
from PyCRC.CRC16 import CRC16
from .objects import MBusObject, MBusObjectV2_2, CosemObject
from .exceptions import ParseError, InvalidChecksumError
from .obis_references import GAS_METER_READING
from dsmr_parser.objects import MBusObject, MBusObjectV2_2, CosemObject
from dsmr_parser.exceptions import ParseError, InvalidChecksumError
from dsmr_parser.obis_references import GAS_METER_READING
logger = logging.getLogger(__name__)