(self, tree: Dict)
| 52 | self._end_symbol = end_symbol |
| 53 | |
| 54 | def is_end_of_tree(self, tree: Dict): |
| 55 | return len(tree) == 1 and self._end_symbol in tree |
| 56 | |
| 57 | |
| 58 | if __name__ == "__main__": |
nothing calls this directly
no outgoing calls
no test coverage detected