(self, node_path)
| 321 | |
| 322 | @classmethod |
| 323 | def _assert_valid_path(self, node_path): |
| 324 | if "attrs" in node_path.split("/"): |
| 325 | raise ValueError("'attrs' is an invalid node name.") |
| 326 | |
| 327 | @classmethod |
| 328 | def split_path(cls, node_path): |
no outgoing calls
no test coverage detected