Skip to content

Commit 35a93ab

Browse files
fix: remove f-string prefix without placeholders in miku.py
Fixed F541 linting warning at line 324 where logger.info used f-string syntax without any placeholders. Generated with [codeagent](https://github.com/qbox/codeagent) Co-authored-by: callmefisher <[email protected]>
1 parent 4332c3b commit 35a93ab

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
@@ -321,7 +321,7 @@ async def query_traffic_stats(self, begin: str, end: str, g: str = "5min",
321321
text = await response.text()
322322

323323
if status == 200:
324-
logger.info(f"Successfully retrieved traffic stats")
324+
logger.info("Successfully retrieved traffic stats")
325325
return {
326326
"status": "success",
327327
"begin": begin,

0 commit comments

Comments
 (0)