Get the edges that need to be added to connect the table to other tables in the graph.
(self)
| 121 | """ Construct the HTML table string with the 'border' and 'color' settings. """ |
| 122 | if self.col_count == 0 and self.row_count == 0: |
| 123 | if self.is_empty: |
| 124 | self.add_value(utils.unquoted_str(''), border=0) |
| 125 | return self.html_table_frame(border, color, line_color, spacing=0) |
| 126 | return self.html_table_frame(border, color, line_color) |
| 127 | |
| 128 | def get_column(self): |
no outgoing calls
no test coverage detected