(folder_path)
| 221 | |
| 222 | |
| 223 | def trim_personal_folder(folder_path): # type: (str) -> str |
| 224 | if folder_path.startswith(PERSONAL_FOLDER): |
| 225 | folder_path = folder_path[len(PERSONAL_FOLDER):] |
| 226 | return folder_path.lstrip('\\') |
| 227 | |
| 228 | |
| 229 | for f in handler.folders: |