From c78ebe3e2d2dcad1512ff11aab3a50bef2646ff2 Mon Sep 17 00:00:00 2001 From: Nigel Dokter Date: Mon, 5 Jun 2017 21:06:48 +0200 Subject: [PATCH] fixed import errors --- dsmr_parser/clients/protocol.py | 2 +- dsmr_parser/clients/serial_.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dsmr_parser/clients/protocol.py b/dsmr_parser/clients/protocol.py index 68f2434..0834051 100644 --- a/dsmr_parser/clients/protocol.py +++ b/dsmr_parser/clients/protocol.py @@ -8,7 +8,7 @@ from serial_asyncio import create_serial_connection from dsmr_parser import telegram_specifications from dsmr_parser.clients.telegram_buffer import TelegramBuffer -from dsmr_parser.exceptions import ParseError +from dsmr_parser.exceptions import ParseError, InvalidChecksumError from dsmr_parser.parsers import TelegramParser from dsmr_parser.clients.settings import SERIAL_SETTINGS_V2_2, \ SERIAL_SETTINGS_V4 diff --git a/dsmr_parser/clients/serial_.py b/dsmr_parser/clients/serial_.py index ddc0a14..1d7be89 100644 --- a/dsmr_parser/clients/serial_.py +++ b/dsmr_parser/clients/serial_.py @@ -4,7 +4,7 @@ import serial import serial_asyncio from dsmr_parser.clients.telegram_buffer import TelegramBuffer -from dsmr_parser.exceptions import ParseError +from dsmr_parser.exceptions import ParseError, InvalidChecksumError from dsmr_parser.parsers import TelegramParser