Skip to content

Commit

Permalink
Fix #3
Browse files Browse the repository at this point in the history
  • Loading branch information
ntvmb committed May 15, 2024
1 parent 9bb2333 commit 74ddd45
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions src/cyclomonitor/atcf.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,19 +79,19 @@ def reset():
"""Reset ATCF data."""
global cyclones, names, timestamps, lats, longs, basins, winds, pressures
global tc_classes, lats_real, longs_real, movement_speeds, movement_dirs
cyclones = []
names = []
timestamps = []
lats = []
longs = []
basins = []
winds = []
pressures = []
tc_classes = []
lats_real = []
longs_real = []
movement_speeds = []
movement_dirs = []
cyclones.clear()
names.clear()
timestamps.clear()
lats.clear()
longs.clear()
basins.clear()
winds.clear()
pressures.clear()
tc_classes.clear()
lats_real.clear()
longs_real.clear()
movement_speeds.clear()
movement_dirs.clear()


def parse_storm(line: str, *, mode="std"):
Expand Down

0 comments on commit 74ddd45

Please sign in to comment.