Commit 8b8d973
fix(setup): correct has_ext_modules method parameter name (#417)
## Summary
Fix the method parameter name from to in class.
## Root Cause
In line 33:
The parameter should be to follow Python method conventions. This is
inconsistent with defined just above it on line 29, and with the parent
class .
While functionally equivalent (Python doesn't enforce parameter naming),
this:
- Confuses linters and type checkers (pylint R0201, mypy)
- Is inconsistent with the rest of the codebase
- Makes the code harder to read
## Test plan
- [x] Verify still works
- [x] Verify wheel build process is unaffected
Co-authored-by: Test User <test@example.com>1 parent c033950 commit 8b8d973
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
30 | 30 | | |
31 | 31 | | |
32 | 32 | | |
33 | | - | |
| 33 | + | |
34 | 34 | | |
35 | 35 | | |
36 | 36 | | |
| |||
0 commit comments