From 846b6f85e40510ccd1e44f3847706e07ec48d6f8 Mon Sep 17 00:00:00 2001 From: Simon Schubert Date: Thu, 13 Nov 2025 14:44:24 +0100 Subject: [PATCH] Fix formatting of API configuration in README Not an expert on python but the comma seems to make the variable a "" and breaks the usage --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6993ef2..1817acc 100644 --- a/README.md +++ b/README.md @@ -25,8 +25,8 @@ from deltadefi.clients import ApiClient from sidan_gin import HDWallet # Initialize API configuration -network="preprod", -api_key="your_api_key", +network = "preprod" +api_key = "your_api_key" # Initialize ApiClient api = ApiClient(network=network, api_key=api_key)