Skip to content

Commit

Permalink
Merge 8e987f6 into 18f0be2
Browse files Browse the repository at this point in the history
  • Loading branch information
jesusbotella committed Sep 16, 2019
2 parents 18f0be2 + 8e987f6 commit fa62258
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cartoframes/data/dataset/registry/dataframe_dataset.py
Expand Up @@ -17,7 +17,7 @@

class DataFrameDataset(BaseDataset):
def __init__(self, data, credentials=None, schema=None):
super(DataFrameDataset, self).__init__()
super(DataFrameDataset, self).__init__(credentials)

self._df = data

Expand All @@ -32,7 +32,7 @@ def create(cls, data, credentials=None, schema=None):

save_index_as_column(data)

return cls(data)
return cls(data, credentials, schema)

@property
def dataframe(self):
Expand Down

0 comments on commit fa62258

Please sign in to comment.