There are some early warnings in settings.py:Config.__init__ that can't be disabled with quiet because they conditionals use self.quiet, but self.quiet isn't set until later in the method.
Ex. deprecation warning for using not-skip shows up event though I used --quiet.
▶ isort . --check --quiet
/home/sztamas/Work/isort/isort/settings.py:429: UserWarning: W0503: Deprecated config options were used: not_skip.Please see the 5.0.0 upgrade guide: bit.ly/isortv5.
warn(
Code for the example above
https://github.com/PyCQA/isort/blob/develop/isort/settings.py#L428
but there are a few other warnings as well.
There are some early warnings in
settings.py:Config.__init__that can't be disabled withquietbecause they conditionals useself.quiet, butself.quietisn't set until later in the method.Ex. deprecation warning for using
not-skipshows up event though I used--quiet.Code for the example above
https://github.com/PyCQA/isort/blob/develop/isort/settings.py#L428
but there are a few other warnings as well.