-
Notifications
You must be signed in to change notification settings - Fork 40
Open
Labels
bugSomething isn't workingSomething isn't workingenhancementNew feature or requestNew feature or request
Description
In the source class of CloudForCustomers, there is a method to_df that takes kwargs as an argument. One of those kwargs can be "fields" that store a list of fields to filter out.
The TypeError will be raised when this method will be called with fields argument because all kwargs will be passed to
df = pd.DataFrame(data=records, **kwargs) , DataFrame class doesn't have such parameter. I assume that some kwargs arguments should be pop before moving them to class.
Error:
TypeError: DataFrame.__init__() got an unexpected keyword argument 'fields'
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingenhancementNew feature or requestNew feature or request
