SantanuBanerjee commited on
Commit
de38b62
·
verified ·
1 Parent(s): 81c73a1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -2
app.py CHANGED
@@ -101,7 +101,11 @@ example_files = ['#TaxDirection (Responses)_BasicExample.xlsx',
101
  ]
102
 
103
 
104
-
 
 
 
 
105
  # Define the Gradio interface
106
  interface = gr.Interface(
107
  fn=process_excel, # The function to process the uploaded file
@@ -121,7 +125,8 @@ interface = gr.Interface(
121
  "<span style='color: blue;'>Upload Excel file containing #TaxDirections</span> "
122
 
123
  # "<span style='color: brown; font-size: 35px;'>&rarr; </span>"
124
- "<span style='color: brown; font-size: 35px;'>&rArr; &nrArr; &rarr2; &rarrtl; &Rarr; </span>"
 
125
 
126
  "<span style='color: green;'>Download HyperLocal Project Proposals</span>"
127
  "</p>\n"
 
101
  ]
102
 
103
 
104
+ import random
105
+ a_random_object = random.choice(["&rArr;", "&rarrtl;", "&Rarr;", "&rarr;"])
106
+
107
+
108
+
109
  # Define the Gradio interface
110
  interface = gr.Interface(
111
  fn=process_excel, # The function to process the uploaded file
 
125
  "<span style='color: blue;'>Upload Excel file containing #TaxDirections</span> "
126
 
127
  # "<span style='color: brown; font-size: 35px;'>&rarr; </span>"
128
+ # "<span style='color: brown; font-size: 35px;'>&rArr; &rarrtl; &Rarr; </span>"
129
+ "<span style='color: brown; font-size: 35px;'> " +a_random_object +" </span>"
130
 
131
  "<span style='color: green;'>Download HyperLocal Project Proposals</span>"
132
  "</p>\n"