From e65fc027223961af03baf32c58af37b0bfba22a0 Mon Sep 17 00:00:00 2001 From: Ian Date: Tue, 25 Oct 2022 15:01:42 -0500 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 74cdbe9..aa1b7f7 100644 --- a/README.md +++ b/README.md @@ -72,7 +72,7 @@ vehicles = user.vehicles() vehicleList = [] # Array of vehicles for userVehicle in vehicles: # For each user vehicle - vehicleList.append(userVehicle['vin']) + vehicleList.append(userVehicle['VIN']) ``` Now with a **vehicle vin** in hand, use `connectedcar.Vehicle()` to get a Vehicle object representing the user's vehicle.