(self, **kargs)
| 874 | return s |
| 875 | |
| 876 | def graph(self, **kargs): |
| 877 | # type: (Any) -> Optional[str] |
| 878 | s = self.build_graph() |
| 879 | return do_graph(s, **kargs) |
| 880 | |
| 881 | |
| 882 | class Automaton(metaclass=Automaton_metaclass): |
nothing calls this directly
no test coverage detected