@@ -48,7 +48,8 @@ def setup(region: str, non_interactive: bool) -> None:
4848 console .print ("\n Please authenticate with AWS using one of these " "methods:" )
4949 console .print (" • aws configure" )
5050 console .print (
51- " • Set AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY " "environment variables"
51+ " • Set AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY "
52+ "environment variables"
5253 )
5354 console .print (" • Use AWS SSO: aws sso login" )
5455 console .print ("\n Then run this command again." )
@@ -60,7 +61,9 @@ def setup(region: str, non_interactive: bool) -> None:
6061 bedrock_client = BedrockClient (region )
6162
6263 # Get available models
63- console .print (f"\n [yellow]Fetching available Claude models from " f"{ region } ...[/yellow]" )
64+ console .print (
65+ f"\n [yellow]Fetching available Claude models from " f"{ region } ...[/yellow]"
66+ )
6467 models = bedrock_client .list_claude_models ()
6568
6669 if not models :
@@ -71,7 +74,10 @@ def setup(region: str, non_interactive: bool) -> None:
7174 # Select model
7275 if non_interactive and models :
7376 selected_model = models [0 ]
74- console .print (f"[yellow]Using first available model: " f"{ selected_model ['name' ]} [/yellow]" )
77+ console .print (
78+ f"[yellow]Using first available model: "
79+ f"{ selected_model ['name' ]} [/yellow]"
80+ )
7581 else :
7682 console .print ("\n [bold]Available Claude models:[/bold]" )
7783 for idx , model in enumerate (models , 1 ):
@@ -119,7 +125,9 @@ def status() -> None:
119125
120126 if not settings :
121127 console .print ("[yellow]No configuration found.[/yellow]" )
122- console .print ("Run 'claude-bedrock-setup setup' to configure Claude for " "AWS Bedrock." )
128+ console .print (
129+ "Run 'claude-bedrock-setup setup' to configure Claude for " "AWS Bedrock."
130+ )
123131 return
124132
125133 console .print (Panel .fit (Text ("Claude Bedrock Configuration" , style = "bold blue" )))
@@ -137,7 +145,9 @@ def status() -> None:
137145
138146
139147@cli .command ()
140- @click .confirmation_option (prompt = "Are you sure you want to reset the " "configuration?" )
148+ @click .confirmation_option (
149+ prompt = "Are you sure you want to reset the " "configuration?"
150+ )
141151def reset () -> None :
142152 """Reset Claude Bedrock configuration"""
143153 config_manager = ConfigManager ()
0 commit comments