Conditions | 1 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 2 |
CRAP Score | 1 |
1 | # -*- coding: utf-8 -*- |
||
15 | 1 | def clean(self): |
|
16 | 1 | return { |
|
17 | 'respawn_time': { |
||
18 | 'ships': { |
||
19 | 'big': int(self.data['Bigship']), |
||
20 | 'small': int(self.data['Ship']), |
||
21 | }, |
||
22 | 'balloons': int(self.data['Aeroanchored']), |
||
23 | 'artillery': int(self.data['Artillery']), |
||
24 | 'searchlights': int(self.data['Searchlight']), |
||
25 | }, |
||
27 |