I’m encountering an issue when trying to download data from my project. Each time I attempt to export, I receive the error message: “Export Failed: unhashable type: ‘list’”.
I’m not sure what’s causing this. Please me know how to resolve it.
Welcome to the community, @richa_saxena! Would you mind sharing the following information through a private message so that I could have a closer look at your case:
Username
Project name
Server
Note: You could share with me a private message as outlined in the post discussed previously:
This error usually happens when a list is mistakenly used as a dictionary key or in a set. Check your export function—ensure you’re not passing a list where a hashable type (like a tuple or string) is expected. If you’re using Pandas, try converting lists to tuples before exporting. Let me know what library you’re using for more specific help!