(world, bp_filter)
| 64 | |
| 65 | |
| 66 | def list_blueprints(world, bp_filter): |
| 67 | blueprint_library = world.get_blueprint_library() |
| 68 | blueprints = [bp.id for bp in blueprint_library.filter(bp_filter)] |
| 69 | print('available blueprints (filter %r):\n' % bp_filter) |
| 70 | for bp in sorted(blueprints): |
| 71 | print(' ' + bp) |
| 72 | print('') |
| 73 | |
| 74 | |
| 75 | def inspect(args, client): |