Annotate return type for function returning nested class

后端 未结 0 1712
心在旅途
心在旅途 2021-01-28 04:48

I have this python code:

class A:
        
    def foo(self) -> B:
        return A.B()
        
    class B:
        pass   

The interpreter

相关标签:
回答
  • 消灭零回复
提交回复
热议问题