File tree 1 file changed +7
-7
lines changed
1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -143,13 +143,13 @@ def main(args):
143
143
blueprints = [
144
144
x for x in blueprints if vtypes [x ]['vClass' ] not in ('motorcycle' , 'bicycle' )
145
145
]
146
- blueprints = [x for x in blueprints if not x .id . endswith ('microlino' )]
147
- blueprints = [x for x in blueprints if not x .id . endswith ('carlacola' )]
148
- blueprints = [x for x in blueprints if not x .id . endswith ('cybertruck' )]
149
- blueprints = [x for x in blueprints if not x .id . endswith ('t2' )]
150
- blueprints = [x for x in blueprints if not x .id . endswith ('sprinter' )]
151
- blueprints = [x for x in blueprints if not x .id . endswith ('firetruck' )]
152
- blueprints = [x for x in blueprints if not x .id . endswith ('ambulance' )]
146
+ blueprints = [x for x in blueprints if not x .endswith ('microlino' )]
147
+ blueprints = [x for x in blueprints if not x .endswith ('carlacola' )]
148
+ blueprints = [x for x in blueprints if not x .endswith ('cybertruck' )]
149
+ blueprints = [x for x in blueprints if not x .endswith ('t2' )]
150
+ blueprints = [x for x in blueprints if not x .endswith ('sprinter' )]
151
+ blueprints = [x for x in blueprints if not x .endswith ('firetruck' )]
152
+ blueprints = [x for x in blueprints if not x .endswith ('ambulance' )]
153
153
154
154
if not blueprints :
155
155
raise RuntimeError ('No blueprints available due to user restrictions.' )
You can’t perform that action at this time.
0 commit comments