Danny Sepler
Danny Sepler
Love this. I think you chose some great hooks to chat about. Input coming from my time enabling various pre-commit hooks at my company: I believe that whoever adds a...
Oh gosh that's so embarrassing, thank you for correcting me!!
Coming back to this, I'm most excited about "pyupgrade" and "isort" personally. "mypy" is also great, but you're right that it requires work to enable. If we plan on add...
pre-commit ci would be awesome, i haven't used that before. don't forget that the author [offered to help us](https://github.com/nltk/nltk/pull/2747) if we ever need help with implementation details! one thing to...
hi! i am _not_ a native spanish speaker, but i did notice that we have `ación` (which looks like `aci\xF3n` in the code) as an option in the SpanishStemmer. We...
also, the code is [here](https://github.com/nltk/nltk/blob/develop/nltk/stem/snowball.py) and should be pretty simple to change (just make sure to add to both `__step1_suffixes` and the `stem` function)
https://github.com/dannysepler/rm_unneeded_f_str handles this as a CLI tool or pre-commit hook
pyflakes is treating `nonlocal` the same as `globals` at the moment, this is starting to fork the two! it doesn't solve https://github.com/PyCQA/pyflakes/issues/249 or https://github.com/PyCQA/pyflakes/issues/461 yet, but at least it opens...
Just released this and looking for folks to test it! https://github.com/dannysepler/pytestify It's totally okay if it doesn't work out for you 👍
hey, thanks for the issue! i originally chose `a.search(b)` based off the chart above this link https://docs.python.org/3/library/unittest.html#unittest.TestCase.assertAlmostEqual but... a) i got it backwards, it should be `b.search(a)` b) in the...