sed to remove character ['

I have a huge file where the each column has data in the format:

['680.431504394305'] ['P'] . I want to remove the [' and '] from each value. How do I do it with sed?

thanks

What about:

tr -d "[']" < file 

sed -e 's/\[//g;s/\]//g' filename