Get the list of all strings in the table. Returns: list: A copy of the strings list
(self)
| 41 | return "" |
| 42 | |
| 43 | def get_strings(self): |
| 44 | """Get the list of all strings in the table. |
| 45 | |
| 46 | Returns: |
| 47 | list: A copy of the strings list |
| 48 | """ |
| 49 | return self._strings.copy() |
| 50 | |
| 51 | def __len__(self): |
| 52 | """Return the number of strings in the table.""" |
no test coverage detected