(self, _, connection: dict, group_id: Optional[str] = None)
| 110 | |
| 111 | @plugin_method |
| 112 | def remote_scopes(self, _, connection: dict, group_id: Optional[str] = None): |
| 113 | c = self._plugin.connection_type(**connection) |
| 114 | yield from self._plugin.make_remote_scopes(c, group_id) |
| 115 | |
| 116 | def _mk_context(self, data: dict): |
| 117 | db_url = data['db_url'] |
nothing calls this directly
no test coverage detected