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'

In the source class of CloudForCustomers, there is a method
to_dfthat takes kwargs as an argument. One of those kwargs can be "fields" that store a list of fields to filter out.The
TypeErrorwill be raised when this method will be called withfieldsargument because all kwargs will be passed todf = 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: