(node_type)
| 16 | |
| 17 | |
| 18 | def get_node_blueprint(node_type): |
| 19 | blueprint = None |
| 20 | node_type = 'NODE-' + node_type |
| 21 | if node_type in current_app.blueprints: |
| 22 | blueprint = current_app.blueprints[node_type] |
| 23 | |
| 24 | return blueprint |
| 25 | |
| 26 | |
| 27 | class SearchObjectsHelper: |
no outgoing calls
no test coverage detected