Iterate through tables
(self)
| 295 | return "\n".join(page) |
| 296 | |
| 297 | def __iter__(self): |
| 298 | """Iterate through tables""" |
| 299 | yield from self.tables |
| 300 | |
| 301 | def save(self, filename): |
| 302 | """Save HTML page to a file using the proper encoding""" |
nothing calls this directly
no outgoing calls
no test coverage detected