From 24cd8e3eebc73abe23ccbee927673bd0014fb61d Mon Sep 17 00:00:00 2001 From: Reinier van der Leer Date: Tue, 17 Oct 2023 13:23:19 -0700 Subject: [PATCH] AutoGPT: Fix file ops --- autogpts/autogpt/autogpt/commands/file_operations.py | 1 - 1 file changed, 1 deletion(-) diff --git a/autogpts/autogpt/autogpt/commands/file_operations.py b/autogpts/autogpt/autogpt/commands/file_operations.py index c7465c3a..f82aaa85 100644 --- a/autogpts/autogpt/autogpt/commands/file_operations.py +++ b/autogpts/autogpt/autogpt/commands/file_operations.py @@ -230,7 +230,6 @@ def write_to_file(filename: Path, contents: str, agent: Agent) -> str: return f"File {filename.name} has been written successfully." -@sanitize_path_arg("filename") def append_to_file( filename: Path, text: str, agent: Agent, should_log: bool = True ) -> None: