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)),