falcon.before
次のようなフックを追加しようとしています。
def check_authenticated(request, response, resource, params):
print(request.headers)
request.context.test = 'test'
@falcon.before(check_authenticated)
class testing(object):
async def on_get(self, request, response):
print(request.headers)
print('made it here')
しかし、私はエラーに直面し続けます:TypeError: object NoneType can't be used in 'await' expression