Apply ruff-format: drop now-unused imports and reflow

This commit is contained in:
Jeremiah Lowin 2026-07-06 21:38:04 -04:00
commit 396fb876d3
No known key found for this signature in database
5 changed files with 4 additions and 9 deletions

View file

@ -38,9 +38,7 @@ async def main():
# 2. Proxy Server Creation
print("\nStep 2: Creating the Proxy Server (InMemoryProxy)...")
print(
f" (Using create_proxy to wrap '{original_server.name}' directly)"
)
print(f" (Using create_proxy to wrap '{original_server.name}' directly)")
proxy_server = create_proxy(original_server, name="InMemoryProxy")
print(
f" -> Proxy Server '{proxy_server.name}' created, proxying '{original_server.name}'."