import os from typing import Optional _DEFAULT = \'abc\' def _get_value(param: Optional[str]) -> str: return param or os.getenv("PARAM", _DEFAULT)