summaryrefslogtreecommitdiff
path: root/src/plugins
diff options
context:
space:
mode:
authorTrygve Aaberge <trygveaa@gmail.com>2022-02-16 19:15:51 +0100
committerSébastien Helleu <flashcode@flashtux.org>2022-02-20 16:49:04 +0100
commitd359e8135ec8794b30d13917748926f09ba2d907 (patch)
tree8fb4dc5e1e5403f5fc1be1bf867d1b23cdb662cb /src/plugins
parent8700e0bb36e0d52b25975d4486bf3e923cabdf68 (diff)
downloadweechat-d359e8135ec8794b30d13917748926f09ba2d907.zip
doc/api: Add missing parameter to python prototype for config_new_section
Diffstat (limited to 'src/plugins')
-rw-r--r--src/plugins/python/weechat.pyi1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/python/weechat.pyi b/src/plugins/python/weechat.pyi
index 7374fefde..b180fced4 100644
--- a/src/plugins/python/weechat.pyi
+++ b/src/plugins/python/weechat.pyi
@@ -228,6 +228,7 @@ def config_new_section(config_file: str, name: str,
user_can_add_options: int, user_can_delete_options: int,
callback_read: str, callback_read_data: str,
callback_write: str, callback_write_data: str,
+ callback_write_default: str, callback_write_default_data: str,
callback_create_option: str, callback_create_option_data: str,
callback_delete_option: str, callback_delete_option_data: str) -> str:
"""`config_new_section in WeeChat plugin API reference <https://weechat.org/doc/api#_config_new_section>`_"""