Fixed searching for PyAnnotation stub if PyFunction is a stub

This commit is contained in:
Andrey Vlasovskikh
2014-08-21 14:49:56 +04:00
parent e04d3efb14
commit ea3333f70c
@@ -571,7 +571,7 @@ public class PyFunctionImpl extends PyPresentableElementImpl<PyFunctionStub> imp
@Override
public PyAnnotation getAnnotation() {
return findChildByClass(PyAnnotation.class);
return getStubOrPsiChild(PyElementTypes.ANNOTATION);
}
@NotNull