Sergei Shishov

Results 97 comments of Sergei Shishov

Also waiting for this feature to be merged. Also, as we are on Django 2.x+, should be the `path` be the default for `SimpleRouter` or `DefaultRouter`?

Same happening here in Python 3.7 and latest pytest

The issue will be fixed by PR #686

I am not a maintainer, but it is very difficult to say what is wrong just reading your comments. It would be great to have the small reproducible example on...

Hello, when we can expect the fix for the issue? Just a question, not pushing for any actions 😉

Thanks @epage , currently as a workaround we started using `pre-commit` exclude, but added `#TODO:` with appropriate comment. And also keep the configuration to exclude in the config file

Additional workaround is: ``` - repo: https://github.com/crate-ci/typos rev: v1.8.1 hooks: - id: typos pass_filenames: false ``` Got it from [here](https://github.com/econchick/interrogate/issues/60#issuecomment-735436566) as the same issue exists in [interrogate](https://github.com/econchick/interrogate) package

The same issue as in [isort](https://github.com/PyCQA/isort/issues/938) fixed by [PR 939](https://github.com/PyCQA/isort/pull/939) and [black](https://github.com/psf/black/issues/438) fixed by [PR 1032](https://github.com/psf/black/pull/1032) Same problem was happening with `flake8` and happening now with [interrogate][(https://github.com/crate-ci/typos/issues/347)](https://github.com/econchick/interrogate/issues/60)

Hello guys, for overridden functions and unused arguments, can the `vulture` follow the same rules as pylint and other tools. It is described here: https://stackoverflow.com/a/14836005 And this is specified as...