grg commited on
Commit
377589b
·
1 Parent(s): a1565f6

dont create uploads folder

Browse files
Files changed (1) hide show
  1. app.py +0 -1
app.py CHANGED
@@ -10,7 +10,6 @@ from werkzeug.utils import secure_filename
10
 
11
  app = Flask(__name__)
12
  app.config['UPLOAD_FOLDER'] = 'uploads' # Directory where files will be stored
13
- os.makedirs(app.config['UPLOAD_FOLDER'], exist_ok=True)
14
  app.config['ALLOWED_EXTENSIONS'] = {'zip'}
15
 
16
  def allowed_file(filename):
 
10
 
11
  app = Flask(__name__)
12
  app.config['UPLOAD_FOLDER'] = 'uploads' # Directory where files will be stored
 
13
  app.config['ALLOWED_EXTENSIONS'] = {'zip'}
14
 
15
  def allowed_file(filename):