From be7dbbb5d846d7d55a1ad69533945e6a6c8a0b7c Mon Sep 17 00:00:00 2001 From: Shane Smiskol Date: Fri, 10 Jun 2022 22:48:33 -0700 Subject: [PATCH] better names --- selfdrive/car/CARS_template.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/selfdrive/car/CARS_template.md b/selfdrive/car/CARS_template.md index 59e3a23646..36307bf213 100644 --- a/selfdrive/car/CARS_template.md +++ b/selfdrive/car/CARS_template.md @@ -14,11 +14,11 @@ Cars are organized into three tiers: How We Rate The Cars --- -{% for descriptions in star_descriptions.values() %} -{% for name, stars in descriptions.items() %} +{% for star_row in star_descriptions.values() %} +{% for name, star_descriptions in star_row.items() %} ### {{name}} -{% for star, description in stars %} -- {{star_icon.format(star)}} - {{description}} +{% for star, star_description in star_descriptions %} +- {{star_icon.format(star)}} - {{star_description}} {% endfor %} {% endfor %}