Skip to content

Commit eed540e

Browse files
author
Lars Kroehl
committed
fix: remove f-prefix from empty strings (ruff F541)
1 parent 3c100c7 commit eed540e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/moltrust_mcp_server/server.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2356,7 +2356,7 @@ async def mt_get_track_provenance(
23562356
f"Credential ID: {data.get('id')}",
23572357
f"Agent DID: {subj.get('agentDid')}",
23582358
f"Human Name: {subj.get('humanName', 'N/A')}",
2359-
f"",
2359+
"",
23602360
f"Track: {track.get('title')}",
23612361
f"Description: {track.get('description', 'N/A')}",
23622362
f"Tool: {track.get('tool')}",
@@ -2365,11 +2365,11 @@ async def mt_get_track_provenance(
23652365
f"Rights: {track.get('rights')}",
23662366
f"ISRC: {track.get('isrc', 'N/A')}",
23672367
f"Session: {track.get('session', 'N/A')}",
2368-
f"",
2368+
"",
23692369
f"Track Hash: {prov.get('trackHash')}",
23702370
f"EU AI Act: {prov.get('euAiActCompliance')}",
23712371
f"Issued: {prov.get('issuanceDate')}",
2372-
f"",
2372+
"",
23732373
f"Chain: {anchor.get('chain')}",
23742374
f"Anchor TX: {anchor.get('anchorTx', 'pending')}",
23752375
f"Anchor Block: {anchor.get('anchorBlock', 'pending')}",

0 commit comments

Comments
 (0)