(cmd: code_writer_cmd)
| 414 | |
| 415 | |
| 416 | def main(cmd: code_writer_cmd) -> None: |
| 417 | from sqlalchemy import util |
| 418 | from sqlalchemy.util import langhelpers |
| 419 | |
| 420 | util.create_proxy_methods = langhelpers.create_proxy_methods = ( |
| 421 | create_proxy_methods |
| 422 | ) |
| 423 | |
| 424 | for entry in entries: |
| 425 | if cmd.args.module in {"all", entry}: |
| 426 | run_module(entry, cmd) |
| 427 | |
| 428 | |
| 429 | entries = [ |
no test coverage detected