From 3bf22d42505b24e7a5481d244983811f5af64cc6 Mon Sep 17 00:00:00 2001 From: ZergLev Date: Mon, 7 Oct 2024 20:33:21 +0300 Subject: [PATCH] testing --- docs/source/builder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/builder.py b/docs/source/builder.py index a6f03ae57..2028d12e3 100644 --- a/docs/source/builder.py +++ b/docs/source/builder.py @@ -91,7 +91,7 @@ def replace(v: Any) -> str: for links_file in [example_links_file, source_links_file]: with open(links_file, "r") as file: contents = file.read() - contents.replace("DOC_VERSION", doc_version) + contents.replace('DOC_VERSION', doc_version) with open(links_file, "w") as file: file.write(contents)