()
| 98 | |
| 99 | |
| 100 | def initialize_db(): |
| 101 | if not exists(path_join(WORKSPACE_DIR, "default")): |
| 102 | create_workspace("default") |
| 103 | |
| 104 | # Even if the default workspace exists, we still need to check if every protocol has a database (in case of a new protocol) |
| 105 | init_protocol_dbs("default") |
| 106 | |
| 107 | |
| 108 | def format_host_query(q, filter_term, HostsTable): |
no test coverage detected