Nathan Hoad
Nathan Hoad
So to be clear, you're saying functions like this? ``` def foo(a, b, c, _): return a + b + c ```
To make sure I understand, in this case we’d ignore the assignment to _, so then the c argument would be reported unused. Is that the behavior you’d want?
@FelipeLema that's a different request to what's being asked for here. What you're asking for is already supported - U101 is for unused arguments that start with an underscore, so...
Hi! I've never used Anaconda, or conda-forge. Could you point me to documentation for how I'd make it available on there? Then I can let you know how feasible it...
+1 to this! If there's any chance that wheels could be built for Linux as well, that would be great.
For those interested in this, I've put flake8-unused-arguments up on pypi. The repo is at https://github.com/nhoad/flake8-unused-arguments/, which includes the documentation on features. I can't edit the description on pypi to...
Yeah I was sure you used to be able to edit descriptions on PyPI, obviously I'm remembering incorrectly though haha. All good though, I did another version bump to get...
Correct, but there are situations where that isn't feasible, e.g. the name might be guarded by someone else's API. You might have something like: ``` def do_thing(callback): # ... do...
FWIW an issue with my gist is that it will break print() calls for sufficiently large output, because stdout is... surprise surprise, non-blocking. Even if you decide to only have...
Santiago you’re the best!! Thank you!! Happy to let you be the maintainer, if there’s a preferred way for me to notify you about new releases then just let me...