From e144231c1d1ddfeffb31dbe5a2edfa486fc17b1c Mon Sep 17 00:00:00 2001 From: Lilian Boulard Date: Wed, 25 Oct 2023 19:05:49 +0200 Subject: [PATCH] Remove debug --- scripts/prompt_forge.py | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/prompt_forge.py b/scripts/prompt_forge.py index 7e38011..3dc4760 100644 --- a/scripts/prompt_forge.py +++ b/scripts/prompt_forge.py @@ -445,7 +445,6 @@ def from_file(cls, file: Path) -> Generator: def from_string(cls, configuration: str) -> Generator: # Parse the config config = tomllib.loads(configuration) - print(json.dumps(config)) # Validate the JSON schema schema_file = Path(__file__).parent / "config-schema.json"