From d6ceab0b325e25cbdf4c9023ff493f49a9877fdb Mon Sep 17 00:00:00 2001 From: Alena Astrakhantseva Date: Fri, 13 Dec 2024 15:35:12 +0100 Subject: [PATCH] Update docs/website/docs/intro.md --- docs/website/docs/intro.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/website/docs/intro.md b/docs/website/docs/intro.md index dbc72023fd..bc227b85ad 100644 --- a/docs/website/docs/intro.md +++ b/docs/website/docs/intro.md @@ -154,7 +154,7 @@ load_info = pipeline.run(foo) # print load info and the "foo_data" table as dataframe print(load_info) -print(pipeline.dataset().foo_table.df()) +print(pipeline.dataset().foo_data.df()) ``` Check out the [Python data structures tutorial](./tutorial/load-data-from-an-api) to learn about dlt fundamentals and advanced usage scenarios.