(self)
| 169 | return cls(id=cls.ROOT_ID, name=name, builtin=True) |
| 170 | |
| 171 | def is_root(self) -> bool: |
| 172 | return self.id == self.ROOT_ID |
| 173 | |
| 174 | def is_default(self) -> bool: |
| 175 | return str(self.id) == self.DEFAULT_ID |
no outgoing calls
no test coverage detected