(x)
| 743 | from pandas.io.html import _remove_whitespace |
| 744 | |
| 745 | def try_remove_ws(x): |
| 746 | try: |
| 747 | return _remove_whitespace(x) |
| 748 | except AttributeError: |
| 749 | return x |
| 750 | |
| 751 | df = flavor_read_html(banklist_data, match="Metcalf", attrs={"id": "table"})[0] |
| 752 | ground_truth = read_csv( |
nothing calls this directly
no test coverage detected