We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently we don't handle __call__() on metaclasses correctly. For example:
__call__()
class M(type): def __call__(self, x: int) -> Any: ... class C(metaclass=M): ... C(x=1)
results in a false positive. Also similarly handling of metaclass __call__() in protocols is not very principled, see e.g. #14121
The text was updated successfully, but these errors were encountered:
CloudPath
__new__
No branches or pull requests
Currently we don't handle
__call__()
on metaclasses correctly. For example:results in a false positive. Also similarly handling of metaclass
__call__()
in protocols is not very principled, see e.g. #14121The text was updated successfully, but these errors were encountered: