ruff/crates/ruff_linter/resources/test/fixtures/flake8_bugbear/B004.py
2023-09-20 08:38:27 +02:00

12 lines
299 B
Python

def this_is_a_bug():
o = object()
if hasattr(o, "__call__"):
print("Ooh, callable! Or is it?")
if getattr(o, "__call__", False):
print("Ooh, callable! Or is it?")
def this_is_fine():
o = object()
if callable(o):
print("Ooh, this is actually callable.")