Skip to content

Commit b9df45b

Browse files
committed
chore(app/tool): remove constructor in LocalFileOperator
1 parent d644d97 commit b9df45b

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

app/tool/file_operators.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,7 @@ async def run_command(
4242
class LocalFileOperator(FileOperator):
4343
"""File operations implementation for local filesystem."""
4444

45-
def __init__(self, encoding: str = "utf-8"):
46-
self.encoding = encoding
45+
encoding: str = "utf-8"
4746

4847
async def read_file(self, path: PathLike) -> str:
4948
"""Read content from a local file."""

0 commit comments

Comments
 (0)