Good morning, can someone point me to where the `e...
# general
a
Good morning, can someone point me to where the
env()
function is defined/documented? Wanting to know if I can use a default if not set.
1
Ok, I just tried with a second argument, same as if you were to use os.getenv... Is this how its implemented?
g
It's not implemented that way, the actual call is
dict.get
on a captured set of environment vars.
But the effect is the same.
a
🙏