From 378306892f760bf13a806497b1dad23fba09ec15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paulo=20Sima=CC=83o?= Date: Fri, 5 Mar 2021 09:49:27 -0300 Subject: [PATCH] dict fix on pycli --- src/processPyClientOutput.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/processPyClientOutput.go b/src/processPyClientOutput.go index 1156aca..f4e81a2 100644 --- a/src/processPyClientOutput.go +++ b/src/processPyClientOutput.go @@ -77,7 +77,7 @@ def InvokeTxt(path: str, method: str, body) -> str: def InvokeJSON(path: str, method: str, body) -> dict: d = body.__dict__ - return json.loads(InvokeTxt(path, method, body)) + return json.loads(InvokeTxt(path, method, d)) `, api.BasePath)) b.WriteString("#endregion\n\n")