lrschuman17 commited on
Commit
6258529
·
verified ·
1 Parent(s): 7c0da34

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -181,7 +181,7 @@ def main():
181
  logo_path = team_logo_paths[team_name]
182
  try:
183
  logo_image = Image.open(logo_path)
184
- st.image(logo_image, caption=f"{team_name} Logo", use_column_width=True)
185
  except FileNotFoundError:
186
  st.error(f"Logo for {team_name} not found.")
187
 
 
181
  logo_path = team_logo_paths[team_name]
182
  try:
183
  logo_image = Image.open(logo_path)
184
+ st.image(logo_image, caption=f"{team_name} Logo", use_container_width=True)
185
  except FileNotFoundError:
186
  st.error(f"Logo for {team_name} not found.")
187