Reload all functions from the functions directory.
(self)
| 113 | return self.functions.copy() |
| 114 | |
| 115 | def reload_functions(self) -> None: |
| 116 | """Reload all functions from the functions directory.""" |
| 117 | self.functions.clear() |
| 118 | self._loaded = False |
| 119 | self.load_functions() |
| 120 | |
| 121 | |
| 122 | # Global function manager registry keyed by directory |
nothing calls this directly
no test coverage detected