python-setup: Update comment with fully qualified configuration name

This commit is contained in:
Rasmus Wriedt Larsen 2022-12-06 11:37:57 +01:00
parent 5566638d56
commit 3b0a2f607d
No known key found for this signature in database

View file

@ -38,10 +38,10 @@ def install_packages_with_poetry():
# add a workaround. See
# https://github.com/python-poetry/poetry/issues/2692#issuecomment-1235683370
"PYTHON_KEYRING_BACKEND": "keyring.backends.null.Keyring",
# Projects that specify `in-project = true` in their poetry.toml would get the
# venv created inside the repo directory, which would cause CodeQL to consider
# it as user-written code. We don't want this to happen.
# see https://python-poetry.org/docs/configuration/#virtualenvsin-project
# Projects that specify `virtualenvs.in-project = true` in their poetry.toml
# would get the venv created inside the repo directory, which would cause CodeQL
# to consider it as user-written code. We don't want this to happen. see
# https://python-poetry.org/docs/configuration/#virtualenvsin-project
"POETRY_VIRTUALENVS_IN_PROJECT": "False",
}