Skip to content

Commit

Permalink
fixed check for failure in retrieve_data function
Browse files Browse the repository at this point in the history
  • Loading branch information
georgemccabe committed Nov 3, 2021
1 parent dbdec0b commit 4ec50af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion metplus/wrappers/cyclone_plotter_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ def run_all_times(self):
"""
self.sanitized_df = self.retrieve_data()
if not self.sanitized_df:
if self.sanitized_df is None:
return None
self.create_plot()

Expand Down

0 comments on commit 4ec50af

Please sign in to comment.