Skip to content

Commit

Permalink
Fix SnowparkTableDataSet docstrings
Browse files Browse the repository at this point in the history
See kedro-org/kedro#2485.

Signed-off-by: Juan Luis Cano Rodríguez <juan_luis_cano@mckinsey.com>
  • Loading branch information
astrojuanlu committed Mar 31, 2023
1 parent b07a57e commit 1d93711
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions kedro-datasets/kedro_datasets/snowflake/snowpark_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ class SnowparkTableDataSet(AbstractDataSet):
data_catalog.html#use-the-data-catalog-with-the-yaml-api>`_:
.. code-block:: yaml
weather:
type: kedro_datasets.snowflake.SnowparkTableDataSet
table_name: "weather_data"
Expand All @@ -45,6 +46,7 @@ class SnowparkTableDataSet(AbstractDataSet):
catalog.yml
.. code-block:: yaml
weather:
type: kedro_datasets.snowflake.SnowparkTableDataSet
table_name: "weather_data"
Expand All @@ -65,6 +67,7 @@ class SnowparkTableDataSet(AbstractDataSet):
credentials.yml
.. code-block:: yaml
snowflake_client:
account: 'ab12345.eu-central-1'
port: 443
Expand All @@ -77,6 +80,7 @@ class SnowparkTableDataSet(AbstractDataSet):
credentials.yml (with externalbrowser authenticator)
.. code-block:: yaml
snowflake_client:
account: 'ab12345.eu-central-1'
port: 443
Expand All @@ -85,6 +89,7 @@ class SnowparkTableDataSet(AbstractDataSet):
schema: "observations"
user: "john_doe@wdomain.com"
authenticator: "externalbrowser"
"""

# this dataset cannot be used with ``ParallelRunner``,
Expand Down

0 comments on commit 1d93711

Please sign in to comment.