We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23b2db1 commit 074558bCopy full SHA for 074558b
ckanext/recombinant/views.py
@@ -215,7 +215,8 @@ def record_fail(err: str) -> str:
215
'recombinant.preview_table',
216
resource_name=res['name'],
217
owner_org=org['name'])
218
- if 'confirm' not in request.form or request.method == 'GET':
+ # type_ignore_reason: incomplete typing
219
+ if 'confirm' not in request.form or request.method == 'GET': # type: ignore
220
return render('recombinant/confirm_delete.html',
221
extra_vars={'dataset': dataset,
222
'resource': res,
0 commit comments