jaredjoss commited on
Commit
838ba39
·
1 Parent(s): b2371fa

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -155,7 +155,8 @@ def quantizeEffectiveness(url):
155
 
156
  def greet(name):
157
  # vote = quantizeEffectiveness("https://www.youtube.com/watch?v=DhhVr5iLF-c")
158
- os.mkdir('comments')
 
159
 
160
  return "Hello " + name + "!!"
161
 
 
155
 
156
  def greet(name):
157
  # vote = quantizeEffectiveness("https://www.youtube.com/watch?v=DhhVr5iLF-c")
158
+ if not os.exists('comments'):
159
+ os.mkdir('comments')
160
 
161
  return "Hello " + name + "!!"
162