user-1
(User 1)
1
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/
user-1
(User 1)
2
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()
user-1
(User 1)
3
From my testing is seems to .values causing the problem