Skip to content

Commit

Permalink
restore explicit superclass
Browse files Browse the repository at this point in the history
  • Loading branch information
sheppard committed Aug 3, 2022
1 parent d8c187f commit 99ade51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rest_pandas/serializers.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def transform_dataframe(self, dataframe):

@property
def data(self):
data = super().data
data = super(serializers.ListSerializer, self).data
if isinstance(data, DataFrame) or data:
dataframe = self.get_dataframe(data)
return self.transform_dataframe(dataframe)
Expand Down

0 comments on commit 99ade51

Please sign in to comment.