fix: remove dead f-string prefixes via ruff F541 (216 sites) (#52336)

ruff check --fix --select F541 . on current main. Pure prefix removals;
adjacent-string concatenations keep the f only on interpolating fragments.
No string content or live placeholder altered.
This commit is contained in:
Teknium 2026-07-05 13:42:46 -07:00 committed by GitHub
parent 3d0276182a
commit 55e3ee1ab8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
65 changed files with 215 additions and 215 deletions

View file

@ -71,7 +71,7 @@ def node_command(args: argparse.Namespace) -> int:
print(f"[meet-node] display_name={server.display_name}")
print(f"[meet-node] listening on ws://{args.host}:{args.port}")
print(f"[meet-node] token (copy to gateway): {token}")
print(f"[meet-node] approve with:")
print("[meet-node] approve with:")
print(f" hermes meet node approve <name> ws://<host>:{args.port} {token}")
try:
asyncio.run(server.serve())