fix: Pass use_batch_editing parameter to Coder.create in main.py

Added missing parameter that passes the command line argument
to the Coder factory method.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Emasoft 2025-05-17 06:04:39 +02:00
parent 54c8f33293
commit 1574138a03

View file

@ -996,6 +996,7 @@ def main(argv=None, input=None, output=None, force_git_root=None, return_coder=F
detect_urls=args.detect_urls,
auto_copy_context=args.copy_paste,
auto_accept_architect=args.auto_accept_architect,
use_batch_editing=args.use_batch_editing,
)
except UnknownEditFormat as err:
io.tool_error(str(err))