refactor: Change timeout handling to use float type and global request_timeout

This commit is contained in:
Paul Gauthier 2025-02-06 11:36:15 -08:00 committed by Paul Gauthier (aider)
parent ae6fc41ca9
commit 39855f4d2b
3 changed files with 5 additions and 4 deletions

View file

@ -216,7 +216,7 @@ def get_parser(default_config_files, git_root):
)
group.add_argument(
"--timeout",
type=int,
type=float,
default=None,
help="Timeout in seconds for API calls (default: None)",
)