Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit 8a4aa7f5 authored by augustin_s's avatar augustin_s :snake:
Browse files

clean up

parent a69953c7
No related branches found
No related tags found
No related merge requests found
......@@ -3,7 +3,7 @@ import pandas as pd
def compare_dfs(df1, df2):
df = pd.concat((df1, df2))
df = pd.concat((df1, df2))
diff = df.groupby(level=0).agg(report_diff)
drop_empty(diff)
return diff
......
......@@ -3,7 +3,7 @@ import pandas as pd
def load_csv(fname):
fname = fix_file_ext(fname, "csv")
return pd.read_csv(fname, index_col=0, comment="#", float_precision="high")
return pd.read_csv(fname, index_col=0, comment="#", float_precision="high")
def store_csv(df, fname, meta=None):
fname = fix_file_ext(fname, "csv")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment