If I have value starting and ending with quote ' or " in .env -file then quotes are removed from value. I have a password `'hello'` and I would like to pass it to .env -file like this ``` PASS="'hello'" ``` This isn't possible because decouple.py:132 line strip all `'` or `"` characters from begin and end of the string v. ``` v = v.strip('\'"') ``` Instead of that I would do the removing of quotes like this ``` v = v[1:-1] ```