From 7185df594258752c9b52f155910f3ac8cfdcf32e Mon Sep 17 00:00:00 2001 From: Mr-Auto <36127424+Mr-Auto@users.noreply.github.com> Date: Sun, 1 Oct 2023 16:59:53 +0200 Subject: [PATCH] test --- docs/validator.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/validator.py b/docs/validator.py index 458bebdf0..ffc4d3345 100644 --- a/docs/validator.py +++ b/docs/validator.py @@ -1,4 +1,5 @@ import re +import os import parse_source as ps @@ -44,6 +45,8 @@ def replace_all(text): text = text.replace(repl, wth) return text +print(os.getcwd()) + ps.configure_parse(replace_all, "slate.pickle") ps.run_parse()