From 6ed9dd888b8d08ec80b350c1c9101b1d5d1f36e2 Mon Sep 17 00:00:00 2001 From: ADBond <48208438+ADBond@users.noreply.github.com> Date: Mon, 14 Oct 2024 17:05:51 +0100 Subject: [PATCH] fix docs examples --- .../splink_fundamentals/backends/backends.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/topic_guides/splink_fundamentals/backends/backends.md b/docs/topic_guides/splink_fundamentals/backends/backends.md index c0080a441..bd908141e 100644 --- a/docs/topic_guides/splink_fundamentals/backends/backends.md +++ b/docs/topic_guides/splink_fundamentals/backends/backends.md @@ -95,7 +95,7 @@ Once you have initialised the `linker` object, there is no difference in the sub ```python from splink import Linker, DuckDBAPI - linker = Linker(your_args. DuckDBAPI) + linker = Linker(df, settings, db_api=DuckDBAPI(...)) ``` === ":simple-apachespark: Spark" @@ -103,7 +103,7 @@ Once you have initialised the `linker` object, there is no difference in the sub ```python from splink import Linker, SparkAPI - linker = Linker(your_args. SparkAPI) + linker = Linker(df, settings, db_api=SparkAPI(...)) ``` === ":simple-amazonaws: Athena" @@ -111,7 +111,7 @@ Once you have initialised the `linker` object, there is no difference in the sub ```python from splink import Linker, AthenaAPI - linker = Linker(your_args. AthenaAPI) + linker = Linker(df, settings, db_api=AthenaAPI(...)) ``` === ":simple-sqlite: SQLite" @@ -119,7 +119,7 @@ Once you have initialised the `linker` object, there is no difference in the sub ```python from splink import Linker, SQLiteAPI - linker = Linker(your_args. SQLiteAPI) + linker = Linker(df, settings, db_api=SQLiteAPI(...)) ``` @@ -128,7 +128,7 @@ Once you have initialised the `linker` object, there is no difference in the sub ```python from splink import Linker, PostgresAPI - linker = Linker(your_args. PostgresAPI) + linker = Linker(df, settings, db_api=PostgresAPI(...)) ```