From aaec995b1bee3b74ef5e287253b71fd4ec457197 Mon Sep 17 00:00:00 2001 From: Iulia Feroli Date: Thu, 21 Mar 2024 12:31:19 +0100 Subject: [PATCH] Update overview.asciidoc to replace tuple reference to API Key (#678) --- docs/guide/overview.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/overview.asciidoc b/docs/guide/overview.asciidoc index 9e281bd..762f711 100644 --- a/docs/guide/overview.asciidoc +++ b/docs/guide/overview.asciidoc @@ -61,7 +61,7 @@ You can also connect Eland to an Elasticsearch instance in Elastic Cloud: >>> from elasticsearch import Elasticsearch # First instantiate an 'Elasticsearch' instance connected to Elastic Cloud ->>> es = Elasticsearch(cloud_id="...", api_key=("...", "...")) +>>> es = Elasticsearch(cloud_id="...", api_key="...") # then wrap the client in an Eland DataFrame: >>> df = ed.DataFrame(es, es_index_pattern="flights")