クラス内の関数に適用しているデコレータ関数があります。_api
デコレータは、メンバー変数に対してチェックを行うことになっています。ただし、global name 'self' is not defined
これを実行しようとするとエラーが発生します。正しい方法は何ですか?
def requires_api(fn):
def wrapped(*args, **kwargs):
if self._api is not None:
return fn(*args, **kwargs)
else:
return None
return wrapped
@requires_api
def do_something(self):
...