Hi, I've a password with a `$` char in it, and the password in truncated when parsed with django-dotenv... ```text PASSWORD="foo$bar" ``` ```python import os import dotenv dotenv.read_dotenv() print(os.environment('PASSWORD')) foo ```