rishi9440 commited on
Commit
26ef69b
1 Parent(s): 926e4e8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -9,7 +9,9 @@ from src.st_style import apply_prod_style
9
 
10
  # apply_prod_style(st) # NOTE: Uncomment this for production!
11
 
12
-
 
 
13
  def image_download_button(pil_image, filename: str, fmt: str, label="Download"):
14
  if fmt not in ["jpg", "png"]:
15
  raise Exception(f"Unknown image format (Available: {fmt} - case sensitive)")
 
9
 
10
  # apply_prod_style(st) # NOTE: Uncomment this for production!
11
 
12
+ def V_SPACE(lines):
13
+ for _ in range(lines):
14
+ st.write(' ')
15
  def image_download_button(pil_image, filename: str, fmt: str, label="Download"):
16
  if fmt not in ["jpg", "png"]:
17
  raise Exception(f"Unknown image format (Available: {fmt} - case sensitive)")