Update settings.py

Fixed quotes to be consistent with the rest of settings.py
This commit is contained in:
David Mc Ken 2021-10-31 18:09:54 -04:00
parent 46e71fdc62
commit c0fbe76247

View File

@ -3,7 +3,7 @@ from dotenv import load_dotenv
load_dotenv()
REPO_URL = os.getenv("REPO_URL")
REPO_BRANCH = os.getenv("REPO_BRANCH", 'master')
REPO_BRANCH = os.getenv("REPO_BRANCH", "master")
NETBOX_URL = os.getenv("NETBOX_URL")
NETBOX_TOKEN = os.getenv("NETBOX_TOKEN")
IGNORE_SSL_ERRORS = (os.getenv("IGNORE_SSL_ERRORS", "False") == "True")