Neither:
`# pylint: disable=cyclic-import`
nor:
`# pylint: disable=R0401`
squelches the "Cyclic import" warning. Tried at all scopes, all the way up to global module scope, to no avail: warning is still emitted.
(The apparent cyclic import is a false positive that does not actually occur in runtime, which is not the bug I'm reporting.)
The warning can be successfully disabled by adding a `disable=cyclic-import` clause in the `.pylintrc` file, but that suppresses this check for all modules in the package directory, not desirable.
Bug description
Configuration
No response
Command used
Pylint output
Expected behavior
(no warning)
Pylint version
OS / Environment
macOS Darwin Kernel Version 21.3.0
Additional dependencies
No response