Skip to content

Commit b7c4293

Browse files
committed
take levels out of DataFrameCopy
1 parent c874b68 commit b7c4293

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

pandas_to_postgres/copy_df.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,10 @@ def __init__(
1414
conn: Connection = None,
1515
table_obj: Table = None,
1616
csv_chunksize: int = 10 ** 6,
17-
levels: dict = None,
1817
):
1918
super().__init__(defer_sql_objs, conn, table_obj, csv_chunksize)
2019

2120
self.df = df
22-
self.levels = levels
2321
self.rows = self.df.shape[0]
2422

2523
def copy(self, functions=[cast_pandas]):

0 commit comments

Comments
 (0)