tree3po commited on
Commit
a43ebb2
·
verified ·
1 Parent(s): 82e1c53

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -1
app.py CHANGED
@@ -1,5 +1,13 @@
1
- import os
 
2
  os.environ["HYDRA_FULL_ERROR"] = "1"
 
 
 
 
 
 
 
3
 
4
  os.system(f"""python kinetix/editor.py""")
5
 
 
1
+ import os
2
+ import pprint
3
  os.environ["HYDRA_FULL_ERROR"] = "1"
4
+
5
+ # Get the list of user's
6
+ env_var = os.environ
7
+
8
+ # Print the list of user's
9
+ print("User's Environment variable:")
10
+ pprint.pprint(dict(env_var), width = 1)
11
 
12
  os.system(f"""python kinetix/editor.py""")
13