From 15e11ecc0c480a4b3388fb398deb6f61db94de2f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Thu, 17 Mar 2022 21:17:34 +0100 Subject: [PATCH] core: fix line too long --- doc/python_stub.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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""" `(?PWEECHAT_[A-Z0-9_]+)` \((?P(string|integer))\)(?: \+)?""" + r" `(?PWEECHAT_[A-Z0-9_]+)` " + r"\((?P(string|integer))\)(?: \+)?" ) FUNCTION_RE = r"""\[source,python\]