Generic Error in Pipedream: How to Solve It?

This topic was automatically generated from Slack. You can find the original thread here.

I’m getting a very generic error and I’m not sure how to solve it:

Pipedream Internal Error
Please retry your event or reach out to Pipedream support at https://pipedream.com/support/

Here is my code:

import pandas
import numpy

def handler(pd: "pipedream"):

    url = pd.steps["trigger"]["event"]["exportLinks"]["text/csv"]
    print (url)

    report = pandas.read_csv(url,on_bad_lines='skip')
    return report.values.flatten().tolist()

From my testing is seems to .values causing the problem