Skip to content
Snippets Groups Projects
Commit 17885a38 authored by ferrari's avatar ferrari
Browse files

Fix variable name bug

parent 347ab230
No related branches found
No related tags found
No related merge requests found
...@@ -539,7 +539,7 @@ def main(args): ...@@ -539,7 +539,7 @@ def main(args):
outpath = args.out outpath = args.out
if os.path.isfile(outpath) and not args.erase: if os.path.isfile(outpath) and not args.erase:
return 1 return 1
ref_dict = init(args.path, args.channel) ref_dict = init(args.input, args.channel)
plt.show() plt.show()
df = pd.DataFrame.from_dict(ref_dict['callback'].df, orient='index') df = pd.DataFrame.from_dict(ref_dict['callback'].df, orient='index')
df.to_hdf(outpath, 'df') df.to_hdf(outpath, 'df')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment