mirror of
https://github.com/astral-sh/ruff
synced 2026-01-22 05:51:03 -05:00
269 B
269 B
Condition with object that implements __bool__ incorrectly
class NotBoolable:
__bool__ = 3
# error: [unsupported-bool-conversion] "Boolean conversion is unsupported for type `NotBoolable`; its `__bool__` method isn't callable"
assert NotBoolable()