Skip to content

Commit

Permalink
Variable rename
Browse files Browse the repository at this point in the history
  • Loading branch information
tadghh committed Dec 21, 2023
1 parent bf764cf commit 842c501
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Weather Processing/weather_processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,9 +164,9 @@ def update_range_info(self):
self.range_min_key = latest_dates_keys[0]
self.range_max_key = latest_dates_keys[1]

first_string = f"{self.latest_dates[self.range_min_key]}"
second_string = f"{self.latest_dates[self.range_max_key]}"
self.latest_dates_string = f"{first_string} - {second_string}"
first_dict_value = f"{self.latest_dates[self.range_min_key]}"
second_dict_value = f"{self.latest_dates[self.range_max_key]}"
self.latest_dates_string = f"{first_dict_value} - {second_dict_value}"

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

0 comments on commit 842c501

Please sign in to comment.