mirror of
https://github.com/apache/superset.git
synced 2026-04-19 16:14:52 +00:00
chore: enforce more ruff rules (#31447)
Co-authored-by: Elizabeth Thompson <eschutho@gmail.com>
This commit is contained in:
committed by
GitHub
parent
9da65d6bfd
commit
e51b95ffa8
@@ -22,14 +22,14 @@ class SqlJsonPayloadSchema(Schema):
|
||||
database_id = fields.Integer(required=True)
|
||||
sql = fields.String(required=True)
|
||||
client_id = fields.String(allow_none=True)
|
||||
queryLimit = fields.Integer(allow_none=True)
|
||||
queryLimit = fields.Integer(allow_none=True) # noqa: N815
|
||||
sql_editor_id = fields.String(allow_none=True)
|
||||
schema = fields.String(allow_none=True)
|
||||
tab = fields.String(allow_none=True)
|
||||
ctas_method = fields.String(allow_none=True)
|
||||
templateParams = fields.String(allow_none=True)
|
||||
templateParams = fields.String(allow_none=True) # noqa: N815
|
||||
tmp_table_name = fields.String(allow_none=True)
|
||||
select_as_cta = fields.Boolean(allow_none=True)
|
||||
json = fields.Boolean(allow_none=True)
|
||||
runAsync = fields.Boolean(allow_none=True)
|
||||
runAsync = fields.Boolean(allow_none=True) # noqa: N815
|
||||
expand_data = fields.Boolean(allow_none=True)
|
||||
|
||||
Reference in New Issue
Block a user