(self)
| 48 | |
| 49 | class FolderCreationState: |
| 50 | def __init__(self): |
| 51 | self.new_folder_clicked = False |
| 52 | self.folder_name_entered = False |
| 53 | self.last_action = None |
| 54 | |
| 55 | def get_context(self, ui_tree_string: str) -> str: |
| 56 | if not self.new_folder_clicked: |
nothing calls this directly
no outgoing calls
no test coverage detected