diff --git a/docs/docs-beta/docs/guides/ingestion-transformation/ingesting-data.md b/docs/docs-beta/docs/guides/ingestion-transformation/ingesting-data.md index 3a7ce6cf56693..e9864ae468896 100644 --- a/docs/docs-beta/docs/guides/ingestion-transformation/ingesting-data.md +++ b/docs/docs-beta/docs/guides/ingestion-transformation/ingesting-data.md @@ -52,14 +52,7 @@ Writing code in a language like Python to ingest data into a platform is also a For example, imagine there's a CSV file of counties on the internet and you want to load it into your Snowflake data warehouse as a table. To do this, you might directly define an asset that represents that table in your warehouse. The asset's materialization function fetches data from the internet and loads it into that table: -{/* TODO update example */} - -```python -@asset -def counties(snowflake: SnowflakeResource) -> None: - data = fetch_some_data() - snowflake.conn.execute("INSERT INTO ...") -``` + ## Next steps