Zac Scott
Zac Scott
## What Unable to elegantly escape the `$` in `${VARIABLE}` expansion. ## Scenario > `.env` ```dotenv VAR=${VARIABLE} ``` > `script.py` ```python import os import dotenv if dotenv.find_dotenv(): dotenv.load_dotenv(interpolate=False) print(f"VAR={os.getenv('VAR')}" ```...
## Summary Fixes a couple of `SyntaxWarning` warnings raised by invalid escape sequences in doctsrings by converting them to raw docstrings. 
Hi @bdellegrazie, Thank you for providing this community role. I noticed the version in Ansible-Galaxy (v3.1.2) is two tags behind the this repository (v3.2.1). Would you be able to publish...