From 3f4b7af8a18aef134330e2e31234d92b4a9a7848 Mon Sep 17 00:00:00 2001 From: github action Date: Mon, 13 Feb 2023 04:21:52 +0000 Subject: [PATCH] Apply 'make format' --- docs/guide/conf.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/guide/conf.py b/docs/guide/conf.py index 9f69245dd..8755706ed 100644 --- a/docs/guide/conf.py +++ b/docs/guide/conf.py @@ -23,7 +23,8 @@ def get_vlt_version(): filename = "../../Makefile" with open(filename, "r", encoding="utf8") as fh: for line in fh: - match = re.search(r"PACKAGE_VERSION *= *([a-z0-9.]+) +([-0-9]+)", line) + match = re.search(r"PACKAGE_VERSION *= *([a-z0-9.]+) +([-0-9]+)", + line) if match: return match.group(1), match.group(2) match = re.search(r"PACKAGE_VERSION *= *([a-z0-9.]+) +devel", line)