Skip to content

Commit 32934ef

Browse files
authored
Update tabs.py
fix close approach file parser
1 parent 742956b commit 32934ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

astroquery/esa/neocc/tabs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,7 @@ def clo_appr_parser(data_obj):
484484
df_close_appr = pd.DataFrame()
485485
else:
486486
# Read data as csv
487-
df_close_appr = pd.read_csv(df_impacts_d,
487+
df_close_appr = pd.read_csv(df_impacts_d, skiprows=[0],
488488
delim_whitespace=True)
489489
# Convert Date column to datetime format
490490
# Create auxilary columns

0 commit comments

Comments
 (0)