Update app.py
Browse files
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
|
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.")
|