Skip to content

Commit

Permalink
Rollback to None param
Browse files Browse the repository at this point in the history
  • Loading branch information
argenisleon committed Dec 13, 2019
1 parent 1520007 commit ec85106
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion optimus/io/load.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def tsv(path, header='true', infer_schema='true', charset="UTF-8", *args, **kwar
return df

@staticmethod
def csv(path, sep=',', header='true', infer_schema='true', charset="UTF-8", null_value="null", *args, **kwargs):
def csv(path, sep=',', header='true', infer_schema='true', charset="UTF-8", null_value="None", *args, **kwargs):
"""
Return a dataframe from a csv file. It is the same read.csv Spark function with some predefined
params
Expand Down

0 comments on commit ec85106

Please sign in to comment.