From c741ed97cb35fcb1dff0734e9cdc36ab84753303 Mon Sep 17 00:00:00 2001 From: RemiZOffAlex Date: Thu, 19 Mar 2026 22:45:55 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20executor/handlers/config.py?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- executor/handlers/config.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/executor/handlers/config.py b/executor/handlers/config.py index ec603c0..95cbe70 100644 --- a/executor/handlers/config.py +++ b/executor/handlers/config.py @@ -16,4 +16,5 @@ def handle_config(config): config['github.event.path'] = getenv('GITHUB_EVENT_PATH') with open(config['github.event.path'], 'r') as fd: data = json.load(fd) - print(data) + pretty_json = json.dumps(data, indent=4) + print(pretty_json)