actually fixes #4

This commit is contained in:
Jeffrey Paul 2016-05-07 03:59:16 +02:00
parent 359bf4feb7
commit c280150707
1 changed files with 0 additions and 4 deletions

View File

@ -58,9 +58,5 @@ def get_tables(cursor):
output[table_name] = get_table(cursor, table_name)
return output
def get_tables(cursor):
table_list = get_table_list(cursor)
return [{table_name : get_table(cursor, table_name) for table_name in table_list}]
if __name__ == "__main__":
main()