From 682b3c60ff4457e7335bd616ecf99e32e7e7a0c2 Mon Sep 17 00:00:00 2001 From: "pavel.lamonov" Date: Tue, 4 Aug 2026 15:12:54 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9E=D1=88=D0=B8=D0=B1=D0=BA=D0=B0=20=D0=B2?= =?UTF-8?q?=20=D0=BC=D0=B5=D1=82=D0=BE=D0=B4=D0=B5=20post=20api.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api.py b/api.py index ae4fbe2..35f79d6 100644 --- a/api.py +++ b/api.py @@ -50,7 +50,7 @@ class RedmineAPI: response = post(*args, **kwargs) if response.status_code == 201: - return post(*args, **kwargs).json() + return response.json() def get_issue(self, issue_id: int) -> dict: result = self.get(f"/issues/{issue_id}.json")