diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2022-01-30 10:54:30 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2022-01-30 11:01:17 +0100 |
commit | bf3241208b553babdeb851d684060b81d30edc72 (patch) | |
tree | 94b071d7fa6c84339d8f097dc7e31e835e6e151e /src/plugins/python | |
parent | 28d6b71d9e656c20fc5bfb6b69c8a9b9e335c863 (diff) | |
download | weechat-bf3241208b553babdeb851d684060b81d30edc72.zip |
doc/api: fix type of parameter "date" in script prototype of function prnt_date_tags
Diffstat (limited to 'src/plugins/python')
-rw-r--r-- | src/plugins/python/weechat.pyi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/python/weechat.pyi b/src/plugins/python/weechat.pyi index 5bfbc8c8b..f98b7071c 100644 --- a/src/plugins/python/weechat.pyi +++ b/src/plugins/python/weechat.pyi @@ -434,7 +434,7 @@ def prnt(buffer: str, message: str) -> int: ... -def prnt_date_tags(buffer: str, date: str, tags: str, message: str) -> int: +def prnt_date_tags(buffer: str, date: int, tags: str, message: str) -> int: """`prnt_date_tags in WeeChat plugin API reference <https://weechat.org/doc/api#_prnt_date_tags>`_""" ... |