removes this brick from the given group.
(self, group)
| 173 | self.__isInGroup = True |
| 174 | |
| 175 | def remove(self, group): |
| 176 | """ |
| 177 | removes this brick from the given group. |
| 178 | """ |
| 179 | group.remove(self) |
| 180 | self.__isInGroup = False |
| 181 | |
| 182 | def alive(self): |
| 183 | """ |
no outgoing calls
no test coverage detected