Skip to content

Commit b5895cc

Browse files
committed
🩹(summary) fix missing f-string
Spotted by code rabbit. Missing F-string was leading to an unexpected behavior.
1 parent aff87d4 commit b5895cc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/summary/summary/core/llm_service.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,4 +141,4 @@ def call(
141141

142142
except Exception as e:
143143
self._logger.exception("LLM call failed: %s", e)
144-
raise LLMException("LLM call failed: {e}") from e
144+
raise LLMException(f"LLM call failed: {e}") from e

0 commit comments

Comments
 (0)