(env: Environment)
| 64 | @cli.command(help="Validate form schema file") |
| 65 | @pass_env |
| 66 | def validate(env: Environment): |
| 67 | _validate_form(env) |
| 68 | rich.print(":white_heavy_check_mark: Form document is valid") |
| 69 | |
| 70 | |
| 71 | @cli.command(name="list", help="List forms") |
nothing calls this directly
no test coverage detected