Spaces:
Sleeping
Sleeping
Commit
·
fb73ff7
1
Parent(s):
72abfd9
Small wording fix
Browse files
app.py
CHANGED
|
@@ -76,7 +76,9 @@ with gr.Blocks() as demo:
|
|
| 76 |
with gr.Row() as content:
|
| 77 |
with gr.Column(scale=2):
|
| 78 |
code = gr.Code(
|
| 79 |
-
label="Please write your code here. Only Python
|
|
|
|
|
|
|
| 80 |
)
|
| 81 |
with gr.Column(scale=1):
|
| 82 |
end_btn = gr.Button("Finish the interview", interactive=False)
|
|
|
|
| 76 |
with gr.Row() as content:
|
| 77 |
with gr.Column(scale=2):
|
| 78 |
code = gr.Code(
|
| 79 |
+
label="Please write your code here. Only Python syntax highlighting is available for now.",
|
| 80 |
+
language="python",
|
| 81 |
+
lines=35,
|
| 82 |
)
|
| 83 |
with gr.Column(scale=1):
|
| 84 |
end_btn = gr.Button("Finish the interview", interactive=False)
|