From f4b29093ca542b6e3ef8b6c908ff07100b0fda0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Sun, 30 Mar 2025 10:08:24 +0200 Subject: [PATCH] python: add SPDX copyright tag in Python stub file --- src/plugins/python/weechat.pyi | 2 ++ tools/generate_python_stub.py | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/plugins/python/weechat.pyi b/src/plugins/python/weechat.pyi index 3cf5bfc1a..b78f81184 100644 --- a/src/plugins/python/weechat.pyi +++ b/src/plugins/python/weechat.pyi @@ -3,6 +3,8 @@ # DO NOT EDIT BY HAND! # +# SPDX-FileCopyrightText: 2019-2025 Sébastien Helleu + from typing import Dict, Union WEECHAT_RC_OK: int = 0 diff --git a/tools/generate_python_stub.py b/tools/generate_python_stub.py index 540526f83..639216a7c 100755 --- a/tools/generate_python_stub.py +++ b/tools/generate_python_stub.py @@ -37,6 +37,8 @@ STUB_HEADER = """\ # DO NOT EDIT BY HAND! # +# SPDX-FileCopyrightText: 2019-2025 Sébastien Helleu + from typing import Dict, Union """