Elfsong commited on
Commit
49efbbb
·
verified ·
1 Parent(s): 5e313de

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -42,7 +42,7 @@ language = lang_map[lang][0]
42
 
43
  # Libraries
44
  lib_str = st.text_input("Library?", placeholder="Package A, Package B, ... , Package N", help="if any libraries are needed. Seperate with a comma.")
45
- libraries = [lib.strip() for lib in lib_str.split(",")] if lib_str else None
46
 
47
  # Memory Profile
48
  memory_profile = st.checkbox("Memory Profile?", help="Enable memory profiling for the code execution.")
 
42
 
43
  # Libraries
44
  lib_str = st.text_input("Library?", placeholder="Package A, Package B, ... , Package N", help="if any libraries are needed. Seperate with a comma.")
45
+ libraries = [lib.strip() for lib in lib_str.split(",")] if lib_str else []
46
 
47
  # Memory Profile
48
  memory_profile = st.checkbox("Memory Profile?", help="Enable memory profiling for the code execution.")