refactor: change timeout argument type from float to int

This commit is contained in:
Paul Gauthier (aider) 2024-11-30 13:00:24 -08:00
parent bbabd38a48
commit a3e7203331

View file

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