Same as make_table, but print a table with lines
(self, *args, **kargs)
| 254 | return make_table(self.res, *args, **kargs) |
| 255 | |
| 256 | def make_lined_table(self, *args, **kargs): |
| 257 | # type: (Any, Any) -> Optional[str] |
| 258 | """Same as make_table, but print a table with lines""" |
| 259 | return make_lined_table(self.res, *args, **kargs) |
| 260 | |
| 261 | def make_tex_table(self, *args, **kargs): |
| 262 | # type: (Any, Any) -> Optional[str] |
nothing calls this directly
no test coverage detected