Skip to content

Commit 4738084

Browse files
committed
fix: Correct indentation within research_topic function
1 parent 25b9e49 commit 4738084

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sonar-use-cases/research_finder/research_finder.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
from typing import Optional, Dict, Any # Added imports
1111

1212
def research_topic(query: str, model: str):
13-
"""Placeholder for research function."""
14-
print(f"Researching: '{query}' using model '{model}'...")
13+
"""Placeholder for research function."""
14+
print(f"Researching: '{query}' using model '{model}'...")
1515
# TODO: Implement API call
1616
return {"summary": "Placeholder summary", "sources": ["placeholder source"]}
1717

0 commit comments

Comments
 (0)