You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using the @with_plugins() decorator generates a type error in PyCharm (but not with mypy) when using CliRunner.invoke():
In the above code, removing the @with_plugins() decorator also removes the type error.
This is obviously a minor issue since mypy doesn't generate an error (so CI pipeline are fine), but since CliRunner is widely used in tests, it would be nice if this type error could be suppressed.
The text was updated successfully, but these errors were encountered:
Using the
@with_plugins()
decorator generates a type error in PyCharm (but not with mypy) when usingCliRunner.invoke()
:In the above code, removing the
@with_plugins()
decorator also removes the type error.This is obviously a minor issue since mypy doesn't generate an error (so CI pipeline are fine), but since CliRunner is widely used in tests, it would be nice if this type error could be suppressed.
The text was updated successfully, but these errors were encountered: