### Reproducible code ```python from pyro import poutine class A: @poutine.block def run(self): return 1 a = A() a.run() # error ``` This causes the issue https://github.com/pyro-ppl/pyro/issues/3018