1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-19 09:34:47 +02:00

core: fix line too long

This commit is contained in:
Sébastien Helleu
2022-03-17 21:17:34 +01:00
parent 827db6dc31
commit 15e11ecc0c
+2 -1
View File
@@ -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\]