(params, record_uid)
| 30 | |
| 31 | |
| 32 | def find_folders(params, record_uid): # type: (KeeperParams, str) -> Iterable[str] |
| 33 | for fuid in params.subfolder_record_cache: |
| 34 | if record_uid in params.subfolder_record_cache[fuid]: |
| 35 | if fuid: |
| 36 | yield fuid |
| 37 | |
| 38 | |
| 39 | def find_all_folders(params, record_uid): # type: (KeeperParams, str) -> Iterable[BaseFolderNode] |
no outgoing calls
no test coverage detected