Log operation history
(action: str, details: Dict[str, Any])
| 101 | |
| 102 | |
| 103 | def log_operation(action: str, details: Dict[str, Any]): |
| 104 | """Log operation history""" |
| 105 | OPERATION_HISTORY.append( |
| 106 | {"timestamp": datetime.now().isoformat(), "action": action, "details": details} |
| 107 | ) |
| 108 | |
| 109 | |
| 110 | # ==================== File Operation Tools ==================== |
no outgoing calls
no test coverage detected