我最近开始使用注释。我有一个单例实例,因此我有一个get_instance
方法,其返回值与方法所属的类相同。
class Singleton(object):
def __init__(self):
pass
def get_instance(self) -> Singleton: # Obviously the interpreter complains about undefined name
pass
注释get_instance
方法的正确方法是什么?