2
0
mirror of https://github.com/cmehay/pyentrypoint synced 2024-10-30 15:21:11 +00:00
pyentrypoint/tests/commons.py
2016-12-04 21:11:57 +01:00

8 lines
144 B
Python

import os
def clean_env():
for key in os.environ.copy().keys():
if key.startswith('ENTRYPOINT_'):
del os.environ[key]