Skip to content

Commit

Permalink
FIX: Changes path to init instead of full path.
Browse files Browse the repository at this point in the history
  • Loading branch information
zssherman committed Jan 19, 2024
1 parent 6cc5d7e commit 17afcc4
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions pysp2/io/read_hk.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,7 @@ def read_hk_file(file_name):
The housekeeping information in a pandas DataFrame
"""

try:
my_df = act.io.csvfiles.read_csv(file_name, sep="\t")
except AttributeError:
my_df = act.io.text.read_csv(file_name, sep="\t")
my_df = act.io.read_csv(file_name, sep="\t")

# Parse time from filename
start_time = pd.Timestamp('1904-01-01')
Expand Down

0 comments on commit 17afcc4

Please sign in to comment.