Skip to content

Commit 842c501

Browse files
committed
Variable rename
1 parent bf764cf commit 842c501

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Weather Processing/weather_processor.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -164,9 +164,9 @@ def update_range_info(self):
164164
self.range_min_key = latest_dates_keys[0]
165165
self.range_max_key = latest_dates_keys[1]
166166

167-
first_string = f"{self.latest_dates[self.range_min_key]}"
168-
second_string = f"{self.latest_dates[self.range_max_key]}"
169-
self.latest_dates_string = f"{first_string} - {second_string}"
167+
first_dict_value = f"{self.latest_dates[self.range_min_key]}"
168+
second_dict_value = f"{self.latest_dates[self.range_max_key]}"
169+
self.latest_dates_string = f"{first_dict_value} - {second_dict_value}"
170170

171171
def get_input(self, line_plot=False):
172172
"""Gets input for the graphs.

0 commit comments

Comments
 (0)