(*args, **kargs)
| 3506 | |
| 3507 | |
| 3508 | def make_tex_table(*args, **kargs): |
| 3509 | # type: (*Any, **Any) -> Optional[str] |
| 3510 | return __make_table( # type: ignore |
| 3511 | lambda l: "%s", |
| 3512 | lambda l: "& %s", |
| 3513 | "\\\\", |
| 3514 | *args, |
| 3515 | seplinefunc=lambda a, x: "\\hline", |
| 3516 | **kargs |
| 3517 | ) |
| 3518 | |
| 3519 | #################### |
| 3520 | # WHOIS CLIENT # |
no test coverage detected