Spaces:
Running
Running
tracinginsights
commited on
Commit
·
b389ba6
1
Parent(s):
44f8c3f
Update app.py
Browse files
app.py
CHANGED
@@ -34,5 +34,15 @@ app.plot_recent_overtakes(option)
|
|
34 |
app.plot_full_season()
|
35 |
app.plot_circuits()
|
36 |
|
|
|
|
|
37 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
38 |
|
|
|
34 |
app.plot_full_season()
|
35 |
app.plot_circuits()
|
36 |
|
37 |
+
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 |
|