Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -6,6 +6,8 @@ import ast
6
  # Mendapatkan isi script dari environment variable
7
  script_repr = os.getenv("MY_SCRIPT_CONTENT")
8
 
 
 
9
  if script_repr is None:
10
  st.error("Environment variable 'MY_SCRIPT_CONTENT' not set.")
11
  sys.exit(1)
 
6
  # Mendapatkan isi script dari environment variable
7
  script_repr = os.getenv("MY_SCRIPT_CONTENT")
8
 
9
+ print(script_repr)
10
+
11
  if script_repr is None:
12
  st.error("Environment variable 'MY_SCRIPT_CONTENT' not set.")
13
  sys.exit(1)