Skip to content

Commit 5ed7548

Browse files
- PR feedback
1 parent 401aad7 commit 5ed7548

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ def _get_coding_agent(self) -> str:
171171
CodingAgents[coding_agent.upper()]
172172
return coding_agent.upper()
173173
except (KeyError, ValueError):
174-
_log_config_message(f"Warning: Invalid CODING_AGENT '{coding_agent}'. Must be one of {[agent.name for agent in CodingAgents]}. Defaulting to 'SMARTFIX'.", is_warning=True)
174+
_log_config_message(f"Warning: Invalid CODING_AGENT '{coding_agent}'. Must be one of {[agent.name for agent in CodingAgents]}. Defaulting to '{CodingAgents.SMARTFIX.name}'.", is_warning=True)
175175
return CodingAgents.SMARTFIX.name
176176

177177
def _parse_and_validate_severities(self, json_str: Optional[str]) -> List[str]:

0 commit comments

Comments
 (0)