Skip to content

Commit 08448fd

Browse files
markomanninenclaude
andcommitted
fix: Format test_demo_debug.py with Black to pass CI checks
Apply Black formatting to test_demo_debug.py to resolve CI failure. Changes: - Add trailing commas to dictionary entries (PEP 8 style) - Add blank line after import statement for readability This fixes the CI error: "would reformat /home/runner/work/mcp-debugpy/mcp-debugpy/test_demo_debug.py" 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 4cd48e0 commit 08448fd

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

test_demo_debug.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ async def main():
2323
"breakpoints": [14, 20],
2424
"stop_on_entry": True,
2525
"wait_for_breakpoint": True,
26-
"breakpoint_timeout": 180
26+
"breakpoint_timeout": 180,
2727
}
2828

2929
print("=" * 60)
@@ -48,7 +48,7 @@ async def main():
4848
cwd=config["cwd"],
4949
stop_on_entry=config["stop_on_entry"],
5050
wait_for_breakpoint=config["wait_for_breakpoint"],
51-
breakpoint_timeout=config["breakpoint_timeout"]
51+
breakpoint_timeout=config["breakpoint_timeout"],
5252
)
5353

5454
print("\n" + "=" * 60)
@@ -93,6 +93,7 @@ async def main():
9393
except Exception as e:
9494
print(f"\n[ERROR] Debug session failed: {e}")
9595
import traceback
96+
9697
traceback.print_exc()
9798
return 1
9899

0 commit comments

Comments
 (0)