Skip to content

Commit

Permalink
table.list, not table.list()
Browse files Browse the repository at this point in the history
  • Loading branch information
MJuddBooth committed Oct 20, 2023
1 parent 26cfa0f commit 4cac50c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pandas/io/sql.py
Original file line number Diff line number Diff line change
Expand Up @@ -1899,7 +1899,7 @@ def prep_table(
# somewhat wasteful, but re-create table with keys set from
# the index. Then we can use table.index, otherwise we need
# recreate a bunch of logic
keys = table.index()
keys = table.index
table = SQLTable(
name,
self,
Expand Down

0 comments on commit 4cac50c

Please sign in to comment.