assigning to os.environ does not clear the environment

This page is not yet available in Spanish. We are working on its translation.
If you have any questions or feedback about our current translation project, feel free to reach out to us!

Metadata

ID: python-best-practices/os-environ-no-assign

Language: Python

Severity: Error

Category: Error Prone

Description

Assigning to os.environ does not clear the environment. To clear the environment, use os.environ.clear()

Non-Compliant Code Examples

import os

os.environ = {}  # use os.environ.clear

Compliant Code Examples

import os

os.environ.clear()
https://static.datadoghq.com/static/images/logos/github_avatar.svg https://static.datadoghq.com/static/images/logos/vscode_avatar.svg jetbrains

Seamless integrations. Try Datadog Code Analysis