summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2022-03-17 21:17:34 +0100
committerSébastien Helleu <flashcode@flashtux.org>2022-03-17 21:17:34 +0100
commit15e11ecc0c480a4b3388fb398deb6f61db94de2f (patch)
tree6de4afe357749e7ebd5e02c3f5aaabf5560965fd
parent827db6dc313101c80c3cd8f766fa0b857df77015 (diff)
downloadweechat-15e11ecc0c480a4b3388fb398deb6f61db94de2f.zip
core: fix line too long
-rwxr-xr-xdoc/python_stub.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/python_stub.py b/doc/python_stub.py
index 329f11473..182a46512 100755
--- a/doc/python_stub.py
+++ b/doc/python_stub.py
@@ -39,7 +39,8 @@ from typing import Dict
"""
CONSTANT_RE = (
- r""" `(?P<constant>WEECHAT_[A-Z0-9_]+)` \((?P<type>(string|integer))\)(?: \+)?"""
+ r" `(?P<constant>WEECHAT_[A-Z0-9_]+)` "
+ r"\((?P<type>(string|integer))\)(?: \+)?"
)
FUNCTION_RE = r"""\[source,python\]