pnijhara / sih-2019

Unnecessary literal PTC-W0018
Anti-pattern
Minor
1 occurrence in this check
Unnecessary list literal - rewrite as set literal syntax
 24from apps.admin import requires_auth
 25
 26UPLOAD_FOLDER = "data/uploads"
 27ALLOWED_EXTENSIONS = set(["xlsx"]) 28external_stylesheets = ["https://codepen.io/chriddyp/pen/bWLwgP.css"]
 29
 30server.config["UPLOAD_FOLDER"] = UPLOAD_FOLDER