Spaces:
Runtime error
Runtime error
Alex Stoken
commited on
Commit
·
83e504d
1
Parent(s):
ca487d2
update indentation error
Browse files
app.py
CHANGED
|
@@ -249,10 +249,9 @@ if __name__ == '__main__':
|
|
| 249 |
inputs = [gr.inputs.File(label='Site File with Lat/Lon and GMT Time'), gr.inputs.CheckboxGroup(label='Weather Services',
|
| 250 |
choices=['OpenWeather', 'MET (Norwegian)', 'WeatherAPI'], default=['OpenWeather', 'MET (Norwegian)'])]
|
| 251 |
outputs = gr.outputs.Textbox(
|
| 252 |
-
label='Cloud % for hour before, hour of, hour after')
|
| 253 |
-
css = """* {
|
| 254 |
-
|
| 255 |
-
}"""
|
| 256 |
gr.Interface(fn=file_to_cloud_listing, inputs=inputs, css=css, outputs=outputs,
|
| 257 |
allow_screenshot=False).launch(auth=("es", 'rs'), share=True)
|
| 258 |
|
|
|
|
| 249 |
inputs = [gr.inputs.File(label='Site File with Lat/Lon and GMT Time'), gr.inputs.CheckboxGroup(label='Weather Services',
|
| 250 |
choices=['OpenWeather', 'MET (Norwegian)', 'WeatherAPI'], default=['OpenWeather', 'MET (Norwegian)'])]
|
| 251 |
outputs = gr.outputs.Textbox(
|
| 252 |
+
label ='Cloud % for hour before, hour of, hour after')
|
| 253 |
+
css = """* {font-family: "Lucida Console", "Courier New", monospace !important;/* <-- fonts */
|
| 254 |
+
}"""
|
|
|
|
| 255 |
gr.Interface(fn=file_to_cloud_listing, inputs=inputs, css=css, outputs=outputs,
|
| 256 |
allow_screenshot=False).launch(auth=("es", 'rs'), share=True)
|
| 257 |
|