|
1
|
## Summary of Changes |
|
2
|
|
|
3
|
<!-- Briefly describe what this PR does and why. --> |
|
4
|
|
|
5
|
## Type of Change |
|
6
|
|
|
7
|
<!-- Check the one that applies. --> |
|
8
|
|
|
9
|
- [ ] Bug fix (non-breaking change that fixes an issue) |
|
10
|
- [ ] New feature (non-breaking change that adds functionality) |
|
11
|
- [ ] Documentation update |
|
12
|
- [ ] Refactor (no functional changes) |
|
13
|
- [ ] Breaking change (fix or feature that would cause existing functionality to change) |
|
14
|
|
|
15
|
## Test Plan |
|
16
|
|
|
17
|
<!-- Describe how you tested these changes. Include commands, scenarios, or links to CI runs. --> |
|
18
|
|
|
19
|
## Checklist |
|
20
|
|
|
21
|
- [ ] Tests pass locally (`pytest tests/`) |
|
22
|
- [ ] Lint is clean (`ruff check .` and `ruff format --check .`) |
|
23
|
- [ ] Documentation has been updated (if applicable) |
|
24
|
- [ ] Any new dependencies are added to `pyproject.toml` |
|
25
|
- [ ] Commit messages follow the project's conventions |
|
26
|
|