From 25569686aaa41e60969694266d7f58f0ea1c546c Mon Sep 17 00:00:00 2001 From: Matthias Date: Sun, 28 Jul 2024 15:30:06 +0200 Subject: [PATCH] chore: Update Path to write json schema to --- build_helpers/extract_json_schema.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_helpers/extract_json_schema.py b/build_helpers/extract_json_schema.py index 68fa8835e..b9afa0471 100644 --- a/build_helpers/extract_json_schema.py +++ b/build_helpers/extract_json_schema.py @@ -5,6 +5,6 @@ import rapidjson from freqtrade.configuration.config_schema import CONF_SCHEMA -schema_filename = Path(Path(__file__).parent.parent / "schema.json") +schema_filename = Path(__file__).parent / "schema.json" with schema_filename.open("w") as f: rapidjson.dump(CONF_SCHEMA, f, indent=2)