style: Format code and remove unnecessary whitespace

This commit is contained in:
Paul Gauthier (aider) 2025-03-05 16:55:56 -08:00
parent ce7e5726e7
commit 6212b38ea6

View file

@ -772,11 +772,9 @@ def sanity_check_model(io, model):
# Check if this is a Bedrock model and ensure boto3 is installed
if model.name.startswith("bedrock/"):
from aider.utils import check_pip_install_extra
check_pip_install_extra(
io,
"boto3",
"AWS Bedrock models require the boto3 package.",
["boto3"]
io, "boto3", "AWS Bedrock models require the boto3 package.", ["boto3"]
)
if not model.info: