(self)
| 13 | self.weather_option = "Today's Weather" |
| 14 | |
| 15 | def title(self): |
| 16 | st.markdown( |
| 17 | '<div style="border: 1px solid #ccc; padding: 20px; border-radius: 10px;">' |
| 18 | '<h1 style="text-align: center; color: #0080FF;">SkyCast 🌤️</h1>' |
| 19 | "</div>", |
| 20 | unsafe_allow_html=True, |
| 21 | ) |
| 22 | |
| 23 | def input(self): |
| 24 | st.sidebar.title("Weather Options") |
no outgoing calls
no test coverage detected