From c6a480bc061ad034692d14036e9c17ccb2a85b9b Mon Sep 17 00:00:00 2001 From: Moul <moul@moul.re> Date: Fri, 9 Dec 2022 11:08:16 +0100 Subject: [PATCH] Bump copyright year to 2023 (#417) --- license_header.txt | 2 +- silkaj/__init__.py | 2 +- silkaj/about.py | 2 +- silkaj/auth.py | 2 +- silkaj/blockchain/__init__.py | 2 +- silkaj/blockchain/blocks.py | 2 +- silkaj/blockchain/difficulty.py | 2 +- silkaj/blockchain/information.py | 2 +- silkaj/blockchain/tools.py | 2 +- silkaj/blockchain/verify.py | 2 +- silkaj/checksum.py | 2 +- silkaj/cli.py | 2 +- silkaj/constants.py | 2 +- silkaj/g1_monetary_license.py | 2 +- silkaj/money/__init__.py | 2 +- silkaj/money/balance.py | 2 +- silkaj/money/history.py | 2 +- silkaj/money/tools.py | 2 +- silkaj/money/transfer.py | 3 +-- silkaj/network.py | 2 +- silkaj/public_key.py | 2 +- silkaj/tools.py | 2 +- silkaj/tui.py | 2 +- silkaj/wot/__init__.py | 2 +- silkaj/wot/certification.py | 2 +- silkaj/wot/idty_tools.py | 2 +- silkaj/wot/lookup.py | 2 +- silkaj/wot/membership.py | 2 +- silkaj/wot/revocation.py | 3 +-- silkaj/wot/status.py | 2 +- silkaj/wot/tools.py | 2 +- tests/__init__.py | 2 +- tests/helpers.py | 2 +- tests/integration/__init__.py | 2 +- tests/integration/blockchain/__init__.py | 2 +- tests/integration/blockchain/test_verify.py | 2 +- tests/integration/test_end_to_end.py | 2 +- tests/integration/wot/__init__.py | 2 +- tests/integration/wot/test_membership.py | 2 +- tests/patched/__init__.py | 2 +- tests/patched/auth.py | 2 +- tests/patched/blockchain_tools.py | 2 +- tests/patched/idty_tools.py | 2 +- tests/patched/money.py | 2 +- tests/patched/test_constants.py | 2 +- tests/patched/tools.py | 2 +- tests/patched/tx.py | 2 +- tests/patched/tx_history.py | 2 +- tests/patched/wot.py | 2 +- tests/unit/__init__.py | 2 +- tests/unit/blockchain/__init__.py | 2 +- tests/unit/blockchain/test_verify.py | 2 +- tests/unit/money/__init__.py | 2 +- tests/unit/money/test_history.py | 2 +- tests/unit/money/test_tools.py | 2 +- tests/unit/money/test_transfer.py | 2 +- tests/unit/money/test_transfer_cli.py | 2 +- tests/unit/money/test_transfer_file.py | 2 +- tests/unit/test_auth.py | 2 +- tests/unit/test_checksum.py | 2 +- tests/unit/test_cli.py | 2 +- tests/unit/test_g1_monetary_license.py | 2 +- tests/unit/test_network.py | 2 +- tests/unit/test_public_key.py | 2 +- tests/unit/test_tui.py | 2 +- tests/unit/wot/__init__.py | 2 +- tests/unit/wot/test_certification.py | 2 +- tests/unit/wot/test_idty_tools.py | 2 +- tests/unit/wot/test_membership.py | 2 +- tests/unit/wot/test_revocation.py | 3 +-- tests/unit/wot/test_tools.py | 2 +- 71 files changed, 71 insertions(+), 74 deletions(-) diff --git a/license_header.txt b/license_header.txt index 9491f783..3ab57acb 100644 --- a/license_header.txt +++ b/license_header.txt @@ -1,4 +1,4 @@ -Copyright 2016-2022 Maël Azimi <m.a@moul.re> +Copyright 2016-2023 Maël Azimi <m.a@moul.re> Silkaj is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/__init__.py b/silkaj/__init__.py index 6fef9e68..1a2650df 100644 --- a/silkaj/__init__.py +++ b/silkaj/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/about.py b/silkaj/about.py index 55efeaaf..878d1781 100644 --- a/silkaj/about.py +++ b/silkaj/about.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/auth.py b/silkaj/auth.py index 76c55d51..d8d154cd 100644 --- a/silkaj/auth.py +++ b/silkaj/auth.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/blockchain/__init__.py b/silkaj/blockchain/__init__.py index 58426bbc..6f0d794d 100644 --- a/silkaj/blockchain/__init__.py +++ b/silkaj/blockchain/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/blockchain/blocks.py b/silkaj/blockchain/blocks.py index 2805dbb4..5aa33297 100644 --- a/silkaj/blockchain/blocks.py +++ b/silkaj/blockchain/blocks.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/blockchain/difficulty.py b/silkaj/blockchain/difficulty.py index bfcea792..4b01c3c8 100644 --- a/silkaj/blockchain/difficulty.py +++ b/silkaj/blockchain/difficulty.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/blockchain/information.py b/silkaj/blockchain/information.py index 18609dc0..f3ed513b 100644 --- a/silkaj/blockchain/information.py +++ b/silkaj/blockchain/information.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/blockchain/tools.py b/silkaj/blockchain/tools.py index 82b89ac7..d91b2b51 100644 --- a/silkaj/blockchain/tools.py +++ b/silkaj/blockchain/tools.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/blockchain/verify.py b/silkaj/blockchain/verify.py index 34d0afe9..a3921520 100644 --- a/silkaj/blockchain/verify.py +++ b/silkaj/blockchain/verify.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/checksum.py b/silkaj/checksum.py index b5de0d47..beb173c2 100644 --- a/silkaj/checksum.py +++ b/silkaj/checksum.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/cli.py b/silkaj/cli.py index 7663c1ba..309faed2 100644 --- a/silkaj/cli.py +++ b/silkaj/cli.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/constants.py b/silkaj/constants.py index 637828ec..a78cb517 100644 --- a/silkaj/constants.py +++ b/silkaj/constants.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/g1_monetary_license.py b/silkaj/g1_monetary_license.py index 4a381880..635e21ed 100644 --- a/silkaj/g1_monetary_license.py +++ b/silkaj/g1_monetary_license.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/money/__init__.py b/silkaj/money/__init__.py index 58426bbc..6f0d794d 100644 --- a/silkaj/money/__init__.py +++ b/silkaj/money/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/money/balance.py b/silkaj/money/balance.py index 3079f887..dd9ae175 100644 --- a/silkaj/money/balance.py +++ b/silkaj/money/balance.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/money/history.py b/silkaj/money/history.py index 005b3873..81b777b9 100644 --- a/silkaj/money/history.py +++ b/silkaj/money/history.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/money/tools.py b/silkaj/money/tools.py index ba83be3f..cfceba62 100644 --- a/silkaj/money/tools.py +++ b/silkaj/money/tools.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/money/transfer.py b/silkaj/money/transfer.py index ac016125..f457d623 100644 --- a/silkaj/money/transfer.py +++ b/silkaj/money/transfer.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by @@ -13,7 +13,6 @@ # You should have received a copy of the GNU Affero General Public License # along with Silkaj. If not, see <https://www.gnu.org/licenses/>. - import math import re import shlex diff --git a/silkaj/network.py b/silkaj/network.py index 2fe1f15c..74f1f96a 100644 --- a/silkaj/network.py +++ b/silkaj/network.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/public_key.py b/silkaj/public_key.py index d6095f36..4d40f3c1 100644 --- a/silkaj/public_key.py +++ b/silkaj/public_key.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/tools.py b/silkaj/tools.py index 1a5c810c..b85f9fad 100644 --- a/silkaj/tools.py +++ b/silkaj/tools.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/tui.py b/silkaj/tui.py index 1578ea7d..e702cc20 100644 --- a/silkaj/tui.py +++ b/silkaj/tui.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/wot/__init__.py b/silkaj/wot/__init__.py index 58426bbc..6f0d794d 100644 --- a/silkaj/wot/__init__.py +++ b/silkaj/wot/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/wot/certification.py b/silkaj/wot/certification.py index 9ff13a28..168649b5 100644 --- a/silkaj/wot/certification.py +++ b/silkaj/wot/certification.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/wot/idty_tools.py b/silkaj/wot/idty_tools.py index 63fb8238..3aa1c8a1 100644 --- a/silkaj/wot/idty_tools.py +++ b/silkaj/wot/idty_tools.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/wot/lookup.py b/silkaj/wot/lookup.py index f0fde110..6dd28830 100644 --- a/silkaj/wot/lookup.py +++ b/silkaj/wot/lookup.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/wot/membership.py b/silkaj/wot/membership.py index 8ab075f7..74b4ea84 100644 --- a/silkaj/wot/membership.py +++ b/silkaj/wot/membership.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/wot/revocation.py b/silkaj/wot/revocation.py index 4bbb0bce..0a50dc4f 100644 --- a/silkaj/wot/revocation.py +++ b/silkaj/wot/revocation.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by @@ -13,7 +13,6 @@ # You should have received a copy of the GNU Affero General Public License # along with Silkaj. If not, see <https://www.gnu.org/licenses/>. - import sys from pathlib import Path from typing import Dict diff --git a/silkaj/wot/status.py b/silkaj/wot/status.py index dfa9ad70..76887832 100644 --- a/silkaj/wot/status.py +++ b/silkaj/wot/status.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/silkaj/wot/tools.py b/silkaj/wot/tools.py index 80296a48..e50cd091 100644 --- a/silkaj/wot/tools.py +++ b/silkaj/wot/tools.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/__init__.py b/tests/__init__.py index 58426bbc..6f0d794d 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/helpers.py b/tests/helpers.py index 01bf6976..019ced8e 100644 --- a/tests/helpers.py +++ b/tests/helpers.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/integration/__init__.py b/tests/integration/__init__.py index 58426bbc..6f0d794d 100644 --- a/tests/integration/__init__.py +++ b/tests/integration/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/integration/blockchain/__init__.py b/tests/integration/blockchain/__init__.py index 58426bbc..6f0d794d 100644 --- a/tests/integration/blockchain/__init__.py +++ b/tests/integration/blockchain/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/integration/blockchain/test_verify.py b/tests/integration/blockchain/test_verify.py index 0ec341a8..129dc3cb 100644 --- a/tests/integration/blockchain/test_verify.py +++ b/tests/integration/blockchain/test_verify.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/integration/test_end_to_end.py b/tests/integration/test_end_to_end.py index 2eceb638..c4fe22f0 100644 --- a/tests/integration/test_end_to_end.py +++ b/tests/integration/test_end_to_end.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/integration/wot/__init__.py b/tests/integration/wot/__init__.py index 58426bbc..6f0d794d 100644 --- a/tests/integration/wot/__init__.py +++ b/tests/integration/wot/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/integration/wot/test_membership.py b/tests/integration/wot/test_membership.py index 502a2c98..cc317eb2 100644 --- a/tests/integration/wot/test_membership.py +++ b/tests/integration/wot/test_membership.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/patched/__init__.py b/tests/patched/__init__.py index 58426bbc..6f0d794d 100644 --- a/tests/patched/__init__.py +++ b/tests/patched/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/patched/auth.py b/tests/patched/auth.py index a074d8ac..9acede0f 100644 --- a/tests/patched/auth.py +++ b/tests/patched/auth.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/patched/blockchain_tools.py b/tests/patched/blockchain_tools.py index c8fcbd7b..7fb20636 100644 --- a/tests/patched/blockchain_tools.py +++ b/tests/patched/blockchain_tools.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/patched/idty_tools.py b/tests/patched/idty_tools.py index 9cd70ad0..a688a608 100644 --- a/tests/patched/idty_tools.py +++ b/tests/patched/idty_tools.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/patched/money.py b/tests/patched/money.py index 73e673fd..21a100cc 100644 --- a/tests/patched/money.py +++ b/tests/patched/money.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/patched/test_constants.py b/tests/patched/test_constants.py index 394ae296..e304f4b5 100644 --- a/tests/patched/test_constants.py +++ b/tests/patched/test_constants.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/patched/tools.py b/tests/patched/tools.py index c37e13ff..15b07de6 100644 --- a/tests/patched/tools.py +++ b/tests/patched/tools.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/patched/tx.py b/tests/patched/tx.py index a1c4460d..48de4959 100644 --- a/tests/patched/tx.py +++ b/tests/patched/tx.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/patched/tx_history.py b/tests/patched/tx_history.py index 3451589c..b22b3f6b 100644 --- a/tests/patched/tx_history.py +++ b/tests/patched/tx_history.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/patched/wot.py b/tests/patched/wot.py index d1c78238..14971ff8 100644 --- a/tests/patched/wot.py +++ b/tests/patched/wot.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/unit/__init__.py b/tests/unit/__init__.py index 58426bbc..6f0d794d 100644 --- a/tests/unit/__init__.py +++ b/tests/unit/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/unit/blockchain/__init__.py b/tests/unit/blockchain/__init__.py index 58426bbc..6f0d794d 100644 --- a/tests/unit/blockchain/__init__.py +++ b/tests/unit/blockchain/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/unit/blockchain/test_verify.py b/tests/unit/blockchain/test_verify.py index 26478997..ee3975b8 100644 --- a/tests/unit/blockchain/test_verify.py +++ b/tests/unit/blockchain/test_verify.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/unit/money/__init__.py b/tests/unit/money/__init__.py index 58426bbc..6f0d794d 100644 --- a/tests/unit/money/__init__.py +++ b/tests/unit/money/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/unit/money/test_history.py b/tests/unit/money/test_history.py index 7b49aa31..2dab45c1 100644 --- a/tests/unit/money/test_history.py +++ b/tests/unit/money/test_history.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/unit/money/test_tools.py b/tests/unit/money/test_tools.py index a31cfb83..65b1d378 100644 --- a/tests/unit/money/test_tools.py +++ b/tests/unit/money/test_tools.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/unit/money/test_transfer.py b/tests/unit/money/test_transfer.py index a3ef4eeb..878f67e5 100644 --- a/tests/unit/money/test_transfer.py +++ b/tests/unit/money/test_transfer.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/unit/money/test_transfer_cli.py b/tests/unit/money/test_transfer_cli.py index ab731e52..81cb8a6e 100644 --- a/tests/unit/money/test_transfer_cli.py +++ b/tests/unit/money/test_transfer_cli.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/unit/money/test_transfer_file.py b/tests/unit/money/test_transfer_file.py index def36115..84292ac7 100644 --- a/tests/unit/money/test_transfer_file.py +++ b/tests/unit/money/test_transfer_file.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/unit/test_auth.py b/tests/unit/test_auth.py index 7e0b3788..44edb33d 100644 --- a/tests/unit/test_auth.py +++ b/tests/unit/test_auth.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/unit/test_checksum.py b/tests/unit/test_checksum.py index 951fb333..4dc6cde2 100644 --- a/tests/unit/test_checksum.py +++ b/tests/unit/test_checksum.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/unit/test_cli.py b/tests/unit/test_cli.py index 9ff32881..822c0f1c 100644 --- a/tests/unit/test_cli.py +++ b/tests/unit/test_cli.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/unit/test_g1_monetary_license.py b/tests/unit/test_g1_monetary_license.py index a4a5f5f6..767716d6 100644 --- a/tests/unit/test_g1_monetary_license.py +++ b/tests/unit/test_g1_monetary_license.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/unit/test_network.py b/tests/unit/test_network.py index fe6326ad..8142975b 100644 --- a/tests/unit/test_network.py +++ b/tests/unit/test_network.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/unit/test_public_key.py b/tests/unit/test_public_key.py index a0830a2c..508f8ca4 100644 --- a/tests/unit/test_public_key.py +++ b/tests/unit/test_public_key.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/unit/test_tui.py b/tests/unit/test_tui.py index 7aaab65a..c6fceb06 100644 --- a/tests/unit/test_tui.py +++ b/tests/unit/test_tui.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/unit/wot/__init__.py b/tests/unit/wot/__init__.py index 58426bbc..6f0d794d 100644 --- a/tests/unit/wot/__init__.py +++ b/tests/unit/wot/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/unit/wot/test_certification.py b/tests/unit/wot/test_certification.py index aa777556..3ff662e9 100644 --- a/tests/unit/wot/test_certification.py +++ b/tests/unit/wot/test_certification.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/unit/wot/test_idty_tools.py b/tests/unit/wot/test_idty_tools.py index c83912d4..79622a83 100644 --- a/tests/unit/wot/test_idty_tools.py +++ b/tests/unit/wot/test_idty_tools.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/unit/wot/test_membership.py b/tests/unit/wot/test_membership.py index e4ae4fe1..aa789e20 100644 --- a/tests/unit/wot/test_membership.py +++ b/tests/unit/wot/test_membership.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/tests/unit/wot/test_revocation.py b/tests/unit/wot/test_revocation.py index eeeb7df7..67ba8078 100644 --- a/tests/unit/wot/test_revocation.py +++ b/tests/unit/wot/test_revocation.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by @@ -13,7 +13,6 @@ # You should have received a copy of the GNU Affero General Public License # along with Silkaj. If not, see <https://www.gnu.org/licenses/>. - import urllib from pathlib import Path from unittest.mock import Mock diff --git a/tests/unit/wot/test_tools.py b/tests/unit/wot/test_tools.py index f10b37f9..85eaa8dd 100644 --- a/tests/unit/wot/test_tools.py +++ b/tests/unit/wot/test_tools.py @@ -1,4 +1,4 @@ -# Copyright 2016-2022 Maël Azimi <m.a@moul.re> +# Copyright 2016-2023 Maël Azimi <m.a@moul.re> # # Silkaj is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by -- GitLab