first commit
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
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
|
||||
Reference in New Issue
Block a user