mirror of
https://github.com/github/codeql.git
synced 2026-04-29 18:55:14 +02:00
Python: Remove unused variable in example for py/url-redirection
This commit is contained in:
@@ -4,7 +4,7 @@ app = Flask(__name__)
|
||||
|
||||
@app.route('/')
|
||||
def hello():
|
||||
target = files = request.args.get('target', '')
|
||||
target = request.args.get('target', '')
|
||||
return redirect(target, code=302)
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user