Skip to content

Commit

Permalink
- fixed base directory
Browse files Browse the repository at this point in the history
  • Loading branch information
hirokawa committed Dec 7, 2024
1 parent e1f14b6 commit 8d1320e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cssrlib/ewss.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ def load_msg(self, file):
s[key] = v[1].strip()
return s

def __init__(self, bdir='../data/ews/', year=0):
def __init__(self, bdir='../data/ewss/', year=0):
self.msg_path = bdir
self.monlevel = 0
self.year = year
Expand Down Expand Up @@ -726,7 +726,7 @@ def decode(self, msg, i):
class camfDec(ewsDec):
""" Common Alert Message Format (CAMF) Decoder class """

def __init__(self, bdir='../data/ews/camf/', year=0):
def __init__(self, bdir='../data/ewss/camf/', year=0):
super().__init__(bdir=bdir, year=year)
self.bdir = bdir

Expand Down

0 comments on commit 8d1320e

Please sign in to comment.