tracinginsights commited on
Commit
803b36a
1 Parent(s): 7fa1198

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -29,7 +29,7 @@ st.markdown(
29
  unsafe_allow_html=True,
30
  )
31
 
32
- #option = app.select_gp()
33
  app.plot_recent_overtakes(option)
34
  app.plot_full_season()
35
  app.plot_circuits()
@@ -38,11 +38,11 @@ from multipage import MultiPage
38
  from repo_directory.pages import Race_Launch_Performance_Ratings
39
 
40
  # Create an instance of the app
41
- app = MultiPage()
42
 
43
  # Add all your application here
44
- app.add_page("Race_Launch_Performance_Ratings", Race_Launch_Performance_Ratings.app)
45
 
46
  # The main app
47
- app.run()
48
 
 
29
  unsafe_allow_html=True,
30
  )
31
 
32
+ option = app.select_gp()
33
  app.plot_recent_overtakes(option)
34
  app.plot_full_season()
35
  app.plot_circuits()
 
38
  from repo_directory.pages import Race_Launch_Performance_Ratings
39
 
40
  # Create an instance of the app
41
+ multiapp = MultiPage()
42
 
43
  # Add all your application here
44
+ multiapp.add_page("Race_Launch_Performance_Ratings", Race_Launch_Performance_Ratings.app)
45
 
46
  # The main app
47
+ multiapp.run()
48