summaryrefslogtreecommitdiff
path: root/python/testData/inspections/PyCallingNonCallableInspection/localCallableClass.py
blob: de03229331e05ea20035c6df40237e1c85e89abc (plain)
1
2
3
4
5
6
7
class Callable(object):
    pass


def f(g):
    if callable(g):
        g()