Get the file group that this node is in. :rtype: Group
(self)
| 300 | return parent |
| 301 | |
| 302 | def file_group(self): |
| 303 | """ |
| 304 | Get the file group that this node is in. |
| 305 | :rtype: Group |
| 306 | """ |
| 307 | parent = self.parent |
| 308 | while parent.parent: |
| 309 | parent = parent.parent |
| 310 | return parent |
| 311 | |
| 312 | def is_attr(self): |
| 313 | """ |
no outgoing calls
no test coverage detected