Spaces:
Sleeping
Sleeping
Update
Browse files
app.py
CHANGED
|
@@ -25,7 +25,7 @@ The editor supports syntax highlighting and autocompletion.
|
|
| 25 |
""")
|
| 26 |
|
| 27 |
# Create main layout with three columns
|
| 28 |
-
col1, col2= st.columns([
|
| 29 |
|
| 30 |
with col1:
|
| 31 |
# Code Editor Section
|
|
@@ -40,7 +40,6 @@ with col1:
|
|
| 40 |
key="ace_editor",
|
| 41 |
show_gutter=True,
|
| 42 |
wrap=True,
|
| 43 |
-
auto_update=True,
|
| 44 |
show_print_margin=True
|
| 45 |
)
|
| 46 |
|
|
|
|
| 25 |
""")
|
| 26 |
|
| 27 |
# Create main layout with three columns
|
| 28 |
+
col1, col2= st.columns([3, 1])
|
| 29 |
|
| 30 |
with col1:
|
| 31 |
# Code Editor Section
|
|
|
|
| 40 |
key="ace_editor",
|
| 41 |
show_gutter=True,
|
| 42 |
wrap=True,
|
|
|
|
| 43 |
show_print_margin=True
|
| 44 |
)
|
| 45 |
|