From dda3b7d2f9be8c329abf11785e3c5e5a36fe7bed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Koray=20K=C4=B1rl=C4=B1?= Date: Fri, 13 Jul 2018 15:16:42 -0400 Subject: [PATCH] pass --- wranglertools/get_field_info.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/wranglertools/get_field_info.py b/wranglertools/get_field_info.py index ceb62b98..2b7973d8 100755 --- a/wranglertools/get_field_info.py +++ b/wranglertools/get_field_info.py @@ -449,7 +449,7 @@ def add_xls_rows(wb, filename, connection): book_w.save(filename) -def create_xls(all_fields, filename, connection): +def create_xls(all_fields, filename): ''' fields being a dictionary of sheet -> FieldInfo(objects) create one sheet per dictionary item, with three columns of fields @@ -479,7 +479,8 @@ def create_xls(all_fields, filename, connection): if not field.comm and not field.enum: add_info = "-" ws.write(3, col+1, add_info) - add_xls_rows(wb, filename, connection) + # add_xls_rows(wb, filename, connection) + wb.save(filename) def main(): # pragma: no cover