File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -59,19 +59,13 @@ def read_spreadsheet(
59
59
" will be processed by convention)" % wsh .title
60
60
)
61
61
records = wsh .get_all_records (
62
- head = 1 ,
63
- numericise_ignore = [
64
- "ISO Number"
65
- ], # Added numericise_ignore parameter
62
+ head = 1 , numericise_ignore = "all" # Added numericise_ignore parameter
66
63
) # workaround because of https://github.com/burnash/gspread/issues/1007 # this will break if the column names are in any other line
67
64
toyaml = yaml .safe_load (yaml .safe_dump (records ))
68
65
result [wsh .title ] = toyaml
69
66
elif not parse_numbered_only :
70
67
records = wsh .get_all_records (
71
- head = 1 ,
72
- numericise_ignore = [
73
- "ISO Number"
74
- ], # Added numericise_ignore parameter
68
+ head = 1 , numericise_ignore = "all" # Added numericise_ignore parameter
75
69
) # workaround because of https://github.com/burnash/gspread/issues/1007 # this will break if the column names are in any other line
76
70
toyaml = yaml .safe_load (yaml .safe_dump (records ))
77
71
result [wsh .title ] = toyaml
You can’t perform that action at this time.
0 commit comments