-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Library uses short argument names #78
Comments
I'm not aware of any learn guides using this, but it would make sense to add |
When I added the V2 support, I added _pin where it wouldn't break compatibility, so most of this is now done. |
Does it make sense to close this now then? |
or now with 9.0 just released? Seems most of this was cleaned up by Melissa in this commit a long time ago. |
The only remaining disables I see are here: Adafruit_CircuitPython_FeatherWing/adafruit_featherwing/minitft_featherwing.py Lines 66 to 67 in 9747734
@makermelissa are these compatibility breaking? Not sure if you had used examples or Learn Guides to benchmark that. I'm also fine with say this is good for now if changing these couple isn't advisable. It's also worth mentioning that with the current discussion around switching to the ruff linter and formatter, this would also be affected (or possibly ignored). |
Possibly. It depends on whether somebody has used these as a keyword argument. I'm not aware of any code I made that did theat, but I can't vouch for other folks. |
pylint
suggests using argument names with at least 3 letters. This library uses argument names of shorter length, and while these warnings have been disabled for now, they should be considered for renaming. This may require the rework of Learn Guides and other references to code snippets.The text was updated successfully, but these errors were encountered: