Total Complexity | 4 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | class BrainPart(): |
||
2 | |||
3 | def __init__(self, host_brain): |
||
4 | self._host_brain = host_brain |
||
5 | self._context = self._host_brain.get_context() |
||
6 | self._host = self._host_brain.get_host() |
||
7 | |||
8 | def get_host_brain(self): |
||
9 | return self._host_brain |
||
10 | |||
11 | def get_host(self): |
||
12 | return self.get_host_brain().get_host() |
||
13 | |||
14 | def done(self): |
||
15 | pass |