## Problem This is a valid bash ENV excerpt which escapes a single quote inside value surrounded by singles quotes (see this [SO comment](https://stackoverflow.com/questions/8254120/how-can-i-escape-a-single-quote-in-a-single-quote-string-in-bash/26165123#26165123)) ```bash ❯ VAR='I'"'"'m a student' ❯ echo $VAR I'm a student ``` However python dotenv cannot parse this value. Assume that `.env` file is created with `VAR='I'"'"'m a student'` line inside ```bash ❯ dotenv list Python-dotenv could not parse statement starting at line 1 ```