(cmd: code_writer_cmd)
| 426 | |
| 427 | |
| 428 | def main(cmd: code_writer_cmd) -> None: |
| 429 | from sqlalchemy import util |
| 430 | from sqlalchemy.util import langhelpers |
| 431 | |
| 432 | util.create_proxy_methods = langhelpers.create_proxy_methods = ( |
| 433 | create_proxy_methods |
| 434 | ) |
| 435 | |
| 436 | for entry in entries: |
| 437 | if cmd.args.module in {"all", entry}: |
| 438 | run_module(entry, cmd) |
| 439 | |
| 440 | |
| 441 | entries = [ |
no test coverage detected