Files
CVExplorer/.venv/lib/python3.13/site-packages/docker/credentials/utils.py
T
Chest a5714116ac +full refactor
+feat: configuration, progress bar, OSV
2026-01-18 13:54:14 +03:00

11 lines
224 B
Python

import os
def create_environment_dict(overrides):
"""
Create and return a copy of os.environ with the specified overrides
"""
result = os.environ.copy()
result.update(overrides or {})
return result