tejasashinde commited on
Commit
4a868c1
·
verified ·
1 Parent(s): 0497427

Updated app.py to use Aurora theme class

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -1,6 +1,6 @@
1
  import time
2
  import gradio as gr
3
- from aurora import aurora
4
  import matplotlib.pyplot as plt
5
  import numpy as np
6
  import pandas as pd
@@ -263,4 +263,4 @@ with gr.Blocks() as demo:
263
  gr.LinePlot(filtered_df, inputs=[ethnicity, max_age], x="age", y="height", title="Age x Height", label="Line Plot")
264
 
265
  if __name__ == "__main__":
266
- demo.queue().launch(theme=aurora, css=aurora_css)
 
1
  import time
2
  import gradio as gr
3
+ from aurora import Aurora
4
  import matplotlib.pyplot as plt
5
  import numpy as np
6
  import pandas as pd
 
263
  gr.LinePlot(filtered_df, inputs=[ethnicity, max_age], x="age", y="height", title="Age x Height", label="Line Plot")
264
 
265
  if __name__ == "__main__":
266
+ demo.queue().launch(theme=Aurora(), css=aurora_css)