From e717dbc3f2e0e07f8ce01f1598c9efe84879b2ad Mon Sep 17 00:00:00 2001 From: Greg Kuhlmann Date: Tue, 29 Jun 2021 19:28:00 -0500 Subject: [PATCH] Fix Feature References example Fix Feature References example by passing `entity_rows` to `get_online_features()` --- docs/concepts/data-model-and-concepts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/concepts/data-model-and-concepts.md b/docs/concepts/data-model-and-concepts.md index 270d98e3d3b..f24dd253858 100644 --- a/docs/concepts/data-model-and-concepts.md +++ b/docs/concepts/data-model-and-concepts.md @@ -20,7 +20,7 @@ online_features = fs.get_online_features( 'driver_locations:lon', 'drivers_activity:trips_today' ], - entities=[{'driver': 'driver_1001'}] + entity_rows=[{'driver': 'driver_1001'}] ) ```