From e4c946b43ceaadae19a0c4feec114e6236f75eaf Mon Sep 17 00:00:00 2001 From: Mario Coray Date: Wed, 13 Mar 2024 11:50:15 +0100 Subject: [PATCH] update copyright header to 2024 --- setup.py | 2 +- smartmeter_datacollector/__init__.py | 2 +- smartmeter_datacollector/__main__.py | 2 +- smartmeter_datacollector/__version__.py | 2 +- smartmeter_datacollector/app.py | 2 +- smartmeter_datacollector/collector.py | 2 +- smartmeter_datacollector/config.py | 2 +- smartmeter_datacollector/factory.py | 2 +- smartmeter_datacollector/sinks/__init__.py | 2 +- smartmeter_datacollector/sinks/data_sink.py | 2 +- smartmeter_datacollector/sinks/logger_sink.py | 2 +- smartmeter_datacollector/sinks/mqtt_sink.py | 2 +- smartmeter_datacollector/smartmeter/__init__.py | 2 +- smartmeter_datacollector/smartmeter/cosem.py | 2 +- smartmeter_datacollector/smartmeter/hdlc_dlms_parser.py | 2 +- smartmeter_datacollector/smartmeter/iskraam550.py | 2 +- smartmeter_datacollector/smartmeter/kamstrup_han.py | 2 +- smartmeter_datacollector/smartmeter/lge360.py | 2 +- smartmeter_datacollector/smartmeter/lge450.py | 2 +- smartmeter_datacollector/smartmeter/meter.py | 2 +- smartmeter_datacollector/smartmeter/meter_data.py | 2 +- smartmeter_datacollector/smartmeter/obis.py | 2 +- smartmeter_datacollector/smartmeter/reader.py | 2 +- smartmeter_datacollector/smartmeter/serial_reader.py | 2 +- tests/__init__.py | 2 +- tests/test_collector.py | 2 +- tests/test_config.py | 2 +- tests/test_hdlc_dlms_parser.py | 2 +- tests/test_iskraam550.py | 2 +- tests/test_lge450.py | 2 +- tests/test_meter_data.py | 2 +- tests/test_mqtt_sink.py | 2 +- tests/test_obis.py | 2 +- tests/utils.py | 2 +- 34 files changed, 34 insertions(+), 34 deletions(-) diff --git a/setup.py b/setup.py index d7c17b4..18a0bda 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Copyright (C) 2022 Supercomputing Systems AG +# Copyright (C) 2024 Supercomputing Systems AG # This file is part of smartmeter-datacollector. # # SPDX-License-Identifier: GPL-2.0-only diff --git a/smartmeter_datacollector/__init__.py b/smartmeter_datacollector/__init__.py index eb5f27c..82835b3 100644 --- a/smartmeter_datacollector/__init__.py +++ b/smartmeter_datacollector/__init__.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2022 Supercomputing Systems AG +# Copyright (C) 2024 Supercomputing Systems AG # This file is part of smartmeter-datacollector. # # SPDX-License-Identifier: GPL-2.0-only diff --git a/smartmeter_datacollector/__main__.py b/smartmeter_datacollector/__main__.py index 2d00de5..86c5e33 100644 --- a/smartmeter_datacollector/__main__.py +++ b/smartmeter_datacollector/__main__.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2022 Supercomputing Systems AG +# Copyright (C) 2024 Supercomputing Systems AG # This file is part of smartmeter-datacollector. # # SPDX-License-Identifier: GPL-2.0-only diff --git a/smartmeter_datacollector/__version__.py b/smartmeter_datacollector/__version__.py index 1e7508d..055a78d 100644 --- a/smartmeter_datacollector/__version__.py +++ b/smartmeter_datacollector/__version__.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2022 Supercomputing Systems AG +# Copyright (C) 2024 Supercomputing Systems AG # This file is part of smartmeter-datacollector. # # SPDX-License-Identifier: GPL-2.0-only diff --git a/smartmeter_datacollector/app.py b/smartmeter_datacollector/app.py index a46c4ed..8427a62 100644 --- a/smartmeter_datacollector/app.py +++ b/smartmeter_datacollector/app.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2022 Supercomputing Systems AG +# Copyright (C) 2024 Supercomputing Systems AG # This file is part of smartmeter-datacollector. # # SPDX-License-Identifier: GPL-2.0-only diff --git a/smartmeter_datacollector/collector.py b/smartmeter_datacollector/collector.py index c9fc658..72e2516 100644 --- a/smartmeter_datacollector/collector.py +++ b/smartmeter_datacollector/collector.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2022 Supercomputing Systems AG +# Copyright (C) 2024 Supercomputing Systems AG # This file is part of smartmeter-datacollector. # # SPDX-License-Identifier: GPL-2.0-only diff --git a/smartmeter_datacollector/config.py b/smartmeter_datacollector/config.py index c747216..06390b3 100644 --- a/smartmeter_datacollector/config.py +++ b/smartmeter_datacollector/config.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2022 Supercomputing Systems AG +# Copyright (C) 2024 Supercomputing Systems AG # This file is part of smartmeter-datacollector. # # SPDX-License-Identifier: GPL-2.0-only diff --git a/smartmeter_datacollector/factory.py b/smartmeter_datacollector/factory.py index 75d57bb..ea42d2e 100644 --- a/smartmeter_datacollector/factory.py +++ b/smartmeter_datacollector/factory.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2022 Supercomputing Systems AG +# Copyright (C) 2024 Supercomputing Systems AG # This file is part of smartmeter-datacollector. # # SPDX-License-Identifier: GPL-2.0-only diff --git a/smartmeter_datacollector/sinks/__init__.py b/smartmeter_datacollector/sinks/__init__.py index 72b155a..cf0ee52 100644 --- a/smartmeter_datacollector/sinks/__init__.py +++ b/smartmeter_datacollector/sinks/__init__.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2022 Supercomputing Systems AG +# Copyright (C) 2024 Supercomputing Systems AG # This file is part of smartmeter-datacollector. # # SPDX-License-Identifier: GPL-2.0-only diff --git a/smartmeter_datacollector/sinks/data_sink.py b/smartmeter_datacollector/sinks/data_sink.py index 339cd87..258c58b 100644 --- a/smartmeter_datacollector/sinks/data_sink.py +++ b/smartmeter_datacollector/sinks/data_sink.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2022 Supercomputing Systems AG +# Copyright (C) 2024 Supercomputing Systems AG # This file is part of smartmeter-datacollector. # # SPDX-License-Identifier: GPL-2.0-only diff --git a/smartmeter_datacollector/sinks/logger_sink.py b/smartmeter_datacollector/sinks/logger_sink.py index f0dfadd..357f555 100644 --- a/smartmeter_datacollector/sinks/logger_sink.py +++ b/smartmeter_datacollector/sinks/logger_sink.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2022 Supercomputing Systems AG +# Copyright (C) 2024 Supercomputing Systems AG # This file is part of smartmeter-datacollector. # # SPDX-License-Identifier: GPL-2.0-only diff --git a/smartmeter_datacollector/sinks/mqtt_sink.py b/smartmeter_datacollector/sinks/mqtt_sink.py index 439e6ab..c3ae3f5 100644 --- a/smartmeter_datacollector/sinks/mqtt_sink.py +++ b/smartmeter_datacollector/sinks/mqtt_sink.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2022 Supercomputing Systems AG +# Copyright (C) 2024 Supercomputing Systems AG # This file is part of smartmeter-datacollector. # # SPDX-License-Identifier: GPL-2.0-only diff --git a/smartmeter_datacollector/smartmeter/__init__.py b/smartmeter_datacollector/smartmeter/__init__.py index 72b155a..cf0ee52 100644 --- a/smartmeter_datacollector/smartmeter/__init__.py +++ b/smartmeter_datacollector/smartmeter/__init__.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2022 Supercomputing Systems AG +# Copyright (C) 2024 Supercomputing Systems AG # This file is part of smartmeter-datacollector. # # SPDX-License-Identifier: GPL-2.0-only diff --git a/smartmeter_datacollector/smartmeter/cosem.py b/smartmeter_datacollector/smartmeter/cosem.py index 5a76de3..4500963 100644 --- a/smartmeter_datacollector/smartmeter/cosem.py +++ b/smartmeter_datacollector/smartmeter/cosem.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2022 Supercomputing Systems AG +# Copyright (C) 2024 Supercomputing Systems AG # This file is part of smartmeter-datacollector. # # SPDX-License-Identifier: GPL-2.0-only diff --git a/smartmeter_datacollector/smartmeter/hdlc_dlms_parser.py b/smartmeter_datacollector/smartmeter/hdlc_dlms_parser.py index 19d11b1..62e455f 100644 --- a/smartmeter_datacollector/smartmeter/hdlc_dlms_parser.py +++ b/smartmeter_datacollector/smartmeter/hdlc_dlms_parser.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2022 Supercomputing Systems AG +# Copyright (C) 2024 Supercomputing Systems AG # This file is part of smartmeter-datacollector. # # SPDX-License-Identifier: GPL-2.0-only diff --git a/smartmeter_datacollector/smartmeter/iskraam550.py b/smartmeter_datacollector/smartmeter/iskraam550.py index 2907533..b912ec2 100644 --- a/smartmeter_datacollector/smartmeter/iskraam550.py +++ b/smartmeter_datacollector/smartmeter/iskraam550.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2022 Supercomputing Systems AG +# Copyright (C) 2024 Supercomputing Systems AG # This file is part of smartmeter-datacollector. # # SPDX-License-Identifier: GPL-2.0-only diff --git a/smartmeter_datacollector/smartmeter/kamstrup_han.py b/smartmeter_datacollector/smartmeter/kamstrup_han.py index 59ab22f..a985fd9 100644 --- a/smartmeter_datacollector/smartmeter/kamstrup_han.py +++ b/smartmeter_datacollector/smartmeter/kamstrup_han.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2023 Supercomputing Systems AG +# Copyright (C) 2024 Supercomputing Systems AG # This file is part of smartmeter-datacollector. # # SPDX-License-Identifier: GPL-2.0-only diff --git a/smartmeter_datacollector/smartmeter/lge360.py b/smartmeter_datacollector/smartmeter/lge360.py index b226d4c..78adb06 100644 --- a/smartmeter_datacollector/smartmeter/lge360.py +++ b/smartmeter_datacollector/smartmeter/lge360.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2022 Supercomputing Systems AG +# Copyright (C) 2024 Supercomputing Systems AG # This file is part of smartmeter-datacollector. # # SPDX-License-Identifier: GPL-2.0-only diff --git a/smartmeter_datacollector/smartmeter/lge450.py b/smartmeter_datacollector/smartmeter/lge450.py index 4eb4010..06724c6 100644 --- a/smartmeter_datacollector/smartmeter/lge450.py +++ b/smartmeter_datacollector/smartmeter/lge450.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2022 Supercomputing Systems AG +# Copyright (C) 2024 Supercomputing Systems AG # This file is part of smartmeter-datacollector. # # SPDX-License-Identifier: GPL-2.0-only diff --git a/smartmeter_datacollector/smartmeter/meter.py b/smartmeter_datacollector/smartmeter/meter.py index b4b5486..6916c5b 100644 --- a/smartmeter_datacollector/smartmeter/meter.py +++ b/smartmeter_datacollector/smartmeter/meter.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2022 Supercomputing Systems AG +# Copyright (C) 2024 Supercomputing Systems AG # This file is part of smartmeter-datacollector. # # SPDX-License-Identifier: GPL-2.0-only diff --git a/smartmeter_datacollector/smartmeter/meter_data.py b/smartmeter_datacollector/smartmeter/meter_data.py index f073dfa..0ee7fc1 100644 --- a/smartmeter_datacollector/smartmeter/meter_data.py +++ b/smartmeter_datacollector/smartmeter/meter_data.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2022 Supercomputing Systems AG +# Copyright (C) 2024 Supercomputing Systems AG # This file is part of smartmeter-datacollector. # # SPDX-License-Identifier: GPL-2.0-only diff --git a/smartmeter_datacollector/smartmeter/obis.py b/smartmeter_datacollector/smartmeter/obis.py index 5e0b73d..45ac445 100644 --- a/smartmeter_datacollector/smartmeter/obis.py +++ b/smartmeter_datacollector/smartmeter/obis.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2022 Supercomputing Systems AG +# Copyright (C) 2024 Supercomputing Systems AG # This file is part of smartmeter-datacollector. # # SPDX-License-Identifier: GPL-2.0-only diff --git a/smartmeter_datacollector/smartmeter/reader.py b/smartmeter_datacollector/smartmeter/reader.py index 2e90142..f713734 100644 --- a/smartmeter_datacollector/smartmeter/reader.py +++ b/smartmeter_datacollector/smartmeter/reader.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2022 Supercomputing Systems AG +# Copyright (C) 2024 Supercomputing Systems AG # This file is part of smartmeter-datacollector. # # SPDX-License-Identifier: GPL-2.0-only diff --git a/smartmeter_datacollector/smartmeter/serial_reader.py b/smartmeter_datacollector/smartmeter/serial_reader.py index 6027ade..e124d43 100644 --- a/smartmeter_datacollector/smartmeter/serial_reader.py +++ b/smartmeter_datacollector/smartmeter/serial_reader.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2022 Supercomputing Systems AG +# Copyright (C) 2024 Supercomputing Systems AG # This file is part of smartmeter-datacollector. # # SPDX-License-Identifier: GPL-2.0-only diff --git a/tests/__init__.py b/tests/__init__.py index 72b155a..cf0ee52 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2022 Supercomputing Systems AG +# Copyright (C) 2024 Supercomputing Systems AG # This file is part of smartmeter-datacollector. # # SPDX-License-Identifier: GPL-2.0-only diff --git a/tests/test_collector.py b/tests/test_collector.py index 2a24b5b..418c799 100644 --- a/tests/test_collector.py +++ b/tests/test_collector.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2022 Supercomputing Systems AG +# Copyright (C) 2024 Supercomputing Systems AG # This file is part of smartmeter-datacollector. # # SPDX-License-Identifier: GPL-2.0-only diff --git a/tests/test_config.py b/tests/test_config.py index 9d74aa9..ff14a82 100644 --- a/tests/test_config.py +++ b/tests/test_config.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2022 Supercomputing Systems AG +# Copyright (C) 2024 Supercomputing Systems AG # This file is part of smartmeter-datacollector. # # SPDX-License-Identifier: GPL-2.0-only diff --git a/tests/test_hdlc_dlms_parser.py b/tests/test_hdlc_dlms_parser.py index adaac5e..f4908e7 100644 --- a/tests/test_hdlc_dlms_parser.py +++ b/tests/test_hdlc_dlms_parser.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2022 Supercomputing Systems AG +# Copyright (C) 2024 Supercomputing Systems AG # This file is part of smartmeter-datacollector. # # SPDX-License-Identifier: GPL-2.0-only diff --git a/tests/test_iskraam550.py b/tests/test_iskraam550.py index c44f520..f58f1d1 100644 --- a/tests/test_iskraam550.py +++ b/tests/test_iskraam550.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2022 Supercomputing Systems AG +# Copyright (C) 2024 Supercomputing Systems AG # This file is part of smartmeter-datacollector. # # SPDX-License-Identifier: GPL-2.0-only diff --git a/tests/test_lge450.py b/tests/test_lge450.py index b8bb2a4..469ee50 100644 --- a/tests/test_lge450.py +++ b/tests/test_lge450.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2022 Supercomputing Systems AG +# Copyright (C) 2024 Supercomputing Systems AG # This file is part of smartmeter-datacollector. # # SPDX-License-Identifier: GPL-2.0-only diff --git a/tests/test_meter_data.py b/tests/test_meter_data.py index 2a473bb..ed18775 100644 --- a/tests/test_meter_data.py +++ b/tests/test_meter_data.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2022 Supercomputing Systems AG +# Copyright (C) 2024 Supercomputing Systems AG # This file is part of smartmeter-datacollector. # # SPDX-License-Identifier: GPL-2.0-only diff --git a/tests/test_mqtt_sink.py b/tests/test_mqtt_sink.py index d080186..f998211 100644 --- a/tests/test_mqtt_sink.py +++ b/tests/test_mqtt_sink.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2022 Supercomputing Systems AG +# Copyright (C) 2024 Supercomputing Systems AG # This file is part of smartmeter-datacollector. # # SPDX-License-Identifier: GPL-2.0-only diff --git a/tests/test_obis.py b/tests/test_obis.py index 83d05de..093de4f 100644 --- a/tests/test_obis.py +++ b/tests/test_obis.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2022 Supercomputing Systems AG +# Copyright (C) 2024 Supercomputing Systems AG # This file is part of smartmeter-datacollector. # # SPDX-License-Identifier: GPL-2.0-only diff --git a/tests/utils.py b/tests/utils.py index 97df278..5dafcf8 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2022 Supercomputing Systems AG +# Copyright (C) 2024 Supercomputing Systems AG # This file is part of smartmeter-datacollector. # # SPDX-License-Identifier: GPL-2.0-only