Skip to content

Commit 79a07d6

Browse files
fix: remove f-string prefix without placeholders
Fixed F541 linting error at line 331 in miku.py by removing the 'f' prefix from logger.info() call that had no placeholders. Generated with [codeagent](https://github.com/qbox/codeagent) Co-authored-by: callmefisher <[email protected]>
1 parent 95d9bcb commit 79a07d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mcp_server/core/miku/miku.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ async def query_live_traffic_stats(self, begin: str, end: str) -> Dict[str, Any]
328328
text = await response.text()
329329

330330
if status == 200:
331-
logger.info(f"Successfully queried live traffic stats")
331+
logger.info("Successfully queried live traffic stats")
332332
return {
333333
"status": "success",
334334
"begin": begin,

0 commit comments

Comments
 (0)