1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-24 03:46:39 +02:00

doc/api: add missing type for argument "count" in Python prototype of function ngettext

This commit is contained in:
Sébastien Helleu
2022-02-14 07:25:22 +01:00
parent ba7ff87d19
commit a2bb57bf82
6 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -59,7 +59,7 @@ def gettext(string: str) -> str:
...
def ngettext(string: str, plural: str, count) -> str:
def ngettext(string: str, plural: str, count: int) -> str:
"""`ngettext in WeeChat plugin API reference <https://weechat.org/doc/api#_ngettext>`_"""
...