Skip to content

Commit

Permalink
pass
Browse files Browse the repository at this point in the history
  • Loading branch information
KorayKirli committed Jul 13, 2018
1 parent 208b679 commit dda3b7d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions wranglertools/get_field_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit dda3b7d

Please sign in to comment.