AdritRao commited on
Commit
a59d305
·
1 Parent(s): 5253012

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -15,7 +15,10 @@ from PIL import Image
15
  logo_image = Image.open("logo.png")
16
 
17
  # Set the logo image to display at the top of the app
18
- st.image(logo_image, use_column_width=True)
 
 
 
19
 
20
  subprocess_executed = False
21
 
 
15
  logo_image = Image.open("logo.png")
16
 
17
  # Set the logo image to display at the top of the app
18
+ logo_width = 50 # Adjust this value to your preferred size
19
+
20
+ # Display the logo image with the specified width
21
+ st.image(logo_image, use_column_width=False, width=logo_width)
22
 
23
  subprocess_executed = False
24