Combine source spaces.
(self, other)
| 476 | return self[0].get("subject_his_id", None) if len(self) else None |
| 477 | |
| 478 | def __add__(self, other): |
| 479 | """Combine source spaces.""" |
| 480 | out = self.copy() |
| 481 | out += other |
| 482 | return SourceSpaces(out) |
| 483 | |
| 484 | def copy(self): |
| 485 | """Make a copy of the source spaces. |
nothing calls this directly
no test coverage detected