|
16 | 16 | class ExpanseContext(NutsContext): |
17 | 17 | def general_result(self) -> List[Dict]: |
18 | 18 | return [ |
19 | | - {"host": "rocinante", "name": "naomi nagata", "role": "engineer", "origin": "belter"}, |
20 | | - {"host": "rocinante", "name": "james holden", "role": "captain", "origin": "earth"}, |
21 | | - {"host": "rocinante", "name": "amos burton", "role": "mechanic", "origin": "earth"}, |
22 | | - {"host": "rocinante", "name": "alex kamal", "role": "pilot", "origin": "mars"}, |
23 | | - {"host": "rocinante", "name": "bobbie draper", "role": "marine", "origin": "mars"}, |
| 19 | + {"ship": "rocinante", "name": "naomi nagata", "role": "engineer", "origin": "belter"}, |
| 20 | + {"ship": "rocinante", "name": "james holden", "role": "captain", "origin": "earth"}, |
| 21 | + {"ship": "rocinante", "name": "amos burton", "role": "mechanic", "origin": "earth"}, |
| 22 | + {"ship": "rocinante", "name": "alex kamal", "role": "pilot", "origin": "mars"}, |
| 23 | + {"ship": "rocinante", "name": "bobbie draper", "role": "marine", "origin": "mars"}, |
24 | 24 | ] |
25 | 25 |
|
26 | 26 | def transform_result(self, general_result: List[Dict]): |
|
0 commit comments