From 0096f1489de136698a9ffd3f5bceee449fc12cc9 Mon Sep 17 00:00:00 2001 From: gguerrini Date: Fri, 12 Dec 2025 12:24:47 +0100 Subject: [PATCH 1/2] Fixed configuration docs --- docs/source/usage.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/usage.rst b/docs/source/usage.rst index 692c06e..0abd071 100644 --- a/docs/source/usage.rst +++ b/docs/source/usage.rst @@ -16,7 +16,7 @@ The most basic example would be something like the following: from hda import Client, Configuration - conf = Configuration(user=[a_username], password=[a_password]) + confif = Configuration(user="a_username", password="a_password") client = Client(config=config) From 4ca095d6148d6f532b5a62e99bcd49d13c336d89 Mon Sep 17 00:00:00 2001 From: gguerrini Date: Fri, 12 Dec 2025 12:27:10 +0100 Subject: [PATCH 2/2] Typo --- docs/source/usage.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/usage.rst b/docs/source/usage.rst index 0abd071..acb62ed 100644 --- a/docs/source/usage.rst +++ b/docs/source/usage.rst @@ -16,7 +16,7 @@ The most basic example would be something like the following: from hda import Client, Configuration - confif = Configuration(user="a_username", password="a_password") + config = Configuration(user="a_username", password="a_password") client = Client(config=config)