Skip to content

Commit

Permalink
Update ARGOS_service_data_converter.py
Browse files Browse the repository at this point in the history
fix delimiter string to remove Syntax Warning
  • Loading branch information
shaunwbell committed Dec 4, 2024
1 parent e046cbd commit 4cb7ff2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ARGOS_service_data_converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def get_data(fobj=None):
]
df = pd.read_csv(
fobj,
delimiter="\s+",
delimiter=r"\s+",
header=None,
names=header,
index_col=False,
Expand Down Expand Up @@ -168,7 +168,7 @@ def get_data(fobj=None):
]
df = pd.read_csv(
fobj,
delimiter="\s+",
delimiter=r"\s+",
header=None,
names=header,
index_col=False,
Expand Down Expand Up @@ -315,7 +315,7 @@ def get_data(fobj=None, time="current"):

df = pd.read_csv(
fobj,
delimiter="\s+",
delimiter=r"\s+",
header=None,
names=header,
index_col=False,
Expand Down

0 comments on commit 4cb7ff2

Please sign in to comment.