Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Kayzz99 committed Mar 4, 2024
1 parent d9ed324 commit 235b701
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def process(self, data):

raw = str(data["dataset"].data)
raw = raw.replace('\\n', '\n').replace('\\r', '\n').replace("b'", "")
data_df = pd.read_csv(io.StringIO(raw),sep=';')
data_df = pd.read_csv(io.StringIO(raw), sep=';')

X = data_df.drop("target", axis=1)
y = data_df["target"]
Expand Down

0 comments on commit 235b701

Please sign in to comment.