From 9f18474f8479c3d9099fd4bb17f4f2b294ca6d45 Mon Sep 17 00:00:00 2001 From: Dennis Siemensma Date: Mon, 23 Jan 2023 23:05:02 +0100 Subject: [PATCH] Mark TODOs #1794/#1764 --- dsmr_parser/obis_references.py | 2 +- dsmr_parser/telegram_specifications.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dsmr_parser/obis_references.py b/dsmr_parser/obis_references.py index c4d5f1006..8c2af1237 100644 --- a/dsmr_parser/obis_references.py +++ b/dsmr_parser/obis_references.py @@ -115,7 +115,7 @@ BELGIUM_MBUS4_METER_READING1 = r"\d-4:24\.2\.1.+?\r\n" BELGIUM_MBUS4_METER_READING2 = r"\d-4:24\.2\.3.+?\r\n" -# DSMR-reader legacy. Should eventually be dropped or selected automatically in a future release. +# @TODO DSMR-reader legacy. Should eventually be dropped or selected automatically in a future release. BELGIUM_MBUS_WILDCARD_DEVICE_TYPE = r"\d-\d:24\.1\.0.+?\r\n" BELGIUM_MBUS_WILDCARD_EQUIPMENT_IDENTIFIER = r"\d-\d:96\.1\.1.+?\r\n" BELGIUM_MBUS_WILDCARD_VALVE_POSITION = r"\d-\d:24\.4\.0.+?\r\n" diff --git a/dsmr_parser/telegram_specifications.py b/dsmr_parser/telegram_specifications.py index 6274dcb5a..fec81d560 100644 --- a/dsmr_parser/telegram_specifications.py +++ b/dsmr_parser/telegram_specifications.py @@ -218,7 +218,7 @@ obis.BELGIUM_MBUS4_METER_READING2: MBusParser( ValueParser(timestamp), ValueParser(Decimal) ), - # DSMR-reader legacy. Should eventually be dropped or selected automatically in a future release. + # @TODO DSMR-reader legacy. Should eventually be dropped or selected automatically in a future release. obis.BELGIUM_MBUS_WILDCARD_DEVICE_TYPE: CosemParser(ValueParser(int)), obis.BELGIUM_MBUS_WILDCARD_EQUIPMENT_IDENTIFIER: CosemParser(ValueParser(str)), obis.BELGIUM_MBUS_WILDCARD_VALVE_POSITION: CosemParser(ValueParser(int)),