Spaces:
Sleeping
Sleeping
vprzybylo commited on
Commit ·
9bb8a5e
1
Parent(s): 1b4b5a7
fix: deprecated use_container_width
Browse files
app.py
CHANGED
|
@@ -270,7 +270,7 @@ def display_weather(weather_data):
|
|
| 270 |
|
| 271 |
def main():
|
| 272 |
image = Image.open("app/src/data/logo.png")
|
| 273 |
-
st.image(image,
|
| 274 |
|
| 275 |
# Initialize if not in session state
|
| 276 |
if "app" not in st.session_state:
|
|
|
|
| 270 |
|
| 271 |
def main():
|
| 272 |
image = Image.open("app/src/data/logo.png")
|
| 273 |
+
st.image(image, use_container_width=True)
|
| 274 |
|
| 275 |
# Initialize if not in session state
|
| 276 |
if "app" not in st.session_state:
|