Skip to content

Commit 616e4a8

Browse files
committed
bug fix
1 parent 0834a70 commit 616e4a8

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

django_excel/__init__.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import pyexcel_webio as webio
1818

1919

20-
class ExcelMixin(webio.ExcelInputInMultiDict):
20+
class ExcelMixin(webio.ExcelInput):
2121
"""
2222
Provide additional pyexcel-webio methods to Django's UploadedFiles
2323
"""
@@ -28,9 +28,6 @@ def get_params(self, **keywords):
2828
return keywords
2929

3030
def save_to_database(self, model=None, initializer=None, mapdict=None,
31-
sheet_name=None,
32-
name_columns_by_row=0,
33-
name_rows_by_column=-1,
3431
**keywords):
3532
"""
3633
Save data from a sheet to a nominated django model

0 commit comments

Comments
 (0)