(self, name: str)
| 771 | self.__dict__["_group_current"] = group_current |
| 772 | |
| 773 | def __raw_get(self, name: str) -> Any: |
| 774 | return super().__getattribute__(name) |
| 775 | |
| 776 | def __eq__(self, other) -> bool: |
| 777 | if type(self) is not type(other): |
no test coverage detected