From 77b7176669e03027c31270ac16e5252f5ff4f3c6 Mon Sep 17 00:00:00 2001 From: Nicola Coretti Date: Wed, 9 Aug 2023 14:55:38 +0200 Subject: [PATCH] Fix typo --- doc/examples/quickstart.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/examples/quickstart.py b/doc/examples/quickstart.py index 614606f8..3c49ffe4 100644 --- a/doc/examples/quickstart.py +++ b/doc/examples/quickstart.py @@ -4,9 +4,9 @@ ) URL = "http://localhost:6666" -CREDENTAILS = {"default": {"username": "w", "password": "write"}} +CREDENTIALS = {"default": {"username": "w", "password": "write"}} -bucketfs = Service(URL, CREDENTAILS) +bucketfs = Service(URL, CREDENTIALS) # 0. List buckets buckets = [bucket for bucket in bucketfs]