NeuralNotwork commited on
Commit
e8cee4c
·
verified ·
1 Parent(s): 5268600

Update get_env_vars.py

Browse files
Files changed (1) hide show
  1. tools/get_env_vars.py +7 -0
tools/get_env_vars.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ """Template for custom function or Pydantic model."""
2
+
3
+ import os
4
+
5
+ def get_env_vars() -> dict:
6
+ """Get the environment variables."""
7
+ return dict(os.environ())