Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -61,9 +61,9 @@ with gr.Blocks(theme=gr.themes.Soft()) as demo:
|
|
61 |
tob = gr.Textbox(label="Time (HH:MM)", placeholder="11:40")
|
62 |
|
63 |
with gr.Row():
|
64 |
-
lat = gr.Number(label="Latitude",
|
65 |
-
lon = gr.Number(label="Longitude",
|
66 |
-
tz = gr.Number(label="Time Zone",
|
67 |
|
68 |
result = gr.Markdown()
|
69 |
|
|
|
61 |
tob = gr.Textbox(label="Time (HH:MM)", placeholder="11:40")
|
62 |
|
63 |
with gr.Row():
|
64 |
+
lat = gr.Number(label="Latitude", value=11)
|
65 |
+
lon = gr.Number(label="Longitude", value=77)
|
66 |
+
tz = gr.Number(label="Time Zone", value=5.5)
|
67 |
|
68 |
result = gr.Markdown()
|
69 |
|