def invoke()

in src/openwhisk/openwhisk.py [0:0]


    def invoke(self, options=None):
        options = options if options is not None else {}

        if 'blocking' in options and 'result' in options:
            return super().invoke(options)['response']['result']

        return super().invoke(options)