(params, tree_key=None)
| 22 | |
| 23 | |
| 24 | def query_enterprise(params, tree_key=None): # type: (KeeperParams, Optional[bytes]) -> None |
| 25 | if not params.enterprise_loader: |
| 26 | params.enterprise_loader = _EnterpriseLoader(tree_key) |
| 27 | params.enterprise_loader.load(params) |
| 28 | |
| 29 | |
| 30 | def _to_key_type(key_type): # type: (proto.EncryptedKeyType) -> str |
nothing calls this directly
no test coverage detected