mirror of
https://github.com/apache/superset.git
synced 2026-04-19 08:04:53 +00:00
remove print
This commit is contained in:
@@ -38,8 +38,6 @@ def url_param(param, default=None):
|
|||||||
:param default: the value to return in the absence of the parameter
|
:param default: the value to return in the absence of the parameter
|
||||||
:type default: str
|
:type default: str
|
||||||
"""
|
"""
|
||||||
print('request args', request.args)
|
|
||||||
print('request form', request.form)
|
|
||||||
if request.args.get(param):
|
if request.args.get(param):
|
||||||
return request.args.get(param, default)
|
return request.args.get(param, default)
|
||||||
# Supporting POST as well as get
|
# Supporting POST as well as get
|
||||||
|
|||||||
Reference in New Issue
Block a user