There was an error while loading. Please reload this page.
1 parent eacadb5 commit a22391dCopy full SHA for a22391d
1 file changed
excel2flapjack/excel2flapjack/main.py
@@ -32,7 +32,8 @@ def flapjack_upload(fj_url, fj_user, fj_pass, excel_path):
32
fj.log_in(username=fj_user, password=fj_pass)
33
34
# read in Excel Data
35
- xls = pd.read_excel(excel_path,sheet_name=None)
+ #xls = pd.read_excel(excel_path,sheet_name=None)
36
+ xls = pd.ExcelFile(excel_path)
37
fj_conv_sht = xls.parse('FlapjackCols', skiprows=0)
38
39
# order is important as Chemicals and DNA must be created before
0 commit comments