From 2a5b5bb1893087607aebd1f2355b0820828a111f Mon Sep 17 00:00:00 2001 From: ziv Date: Sat, 7 Sep 2024 15:56:36 +0300 Subject: [PATCH] Fix comments. --- anyway/widgets/urban_widgets/urban_crosswalk_widget.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/anyway/widgets/urban_widgets/urban_crosswalk_widget.py b/anyway/widgets/urban_widgets/urban_crosswalk_widget.py index b996dc50..1da26d9d 100644 --- a/anyway/widgets/urban_widgets/urban_crosswalk_widget.py +++ b/anyway/widgets/urban_widgets/urban_crosswalk_widget.py @@ -65,10 +65,10 @@ def get_crosswalk(location_info: dict, start_time, end_time, resolution) -> Dict ), } if not cross_output["with_crosswalk"]: - cross_output["with_crosswalk"] = [{"street1_hebrew": location_info["_hebrew"], + cross_output["with_crosswalk"] = [{"street1_hebrew": location_info["street1_hebrew"], "count": 0}] if not cross_output["without_crosswalk"]: - cross_output["without_crosswalk"] = [{"street1_hebrew": location_info["street_hebrew"], + cross_output["without_crosswalk"] = [{"street1_hebrew": location_info["street1_hebrew"], "count": 0}] return cross_output