(table, *args, **kwargs)
| 522 | def require_table(fn): |
| 523 | @wraps(fn) |
| 524 | def inner(table, *args, **kwargs): |
| 525 | if table not in get_dataset().tables: |
| 526 | abort(404) |
| 527 | return fn(table, *args, **kwargs) |
| 528 | return inner |
| 529 | |
| 530 | @app.route('/create-table/', methods=['POST']) |
nothing calls this directly
no test coverage detected