We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
call(*args, **kwargs, &block) invokes the original call implementation and wraps its return value into a result object.
call(*args, **kwargs, &block)
call
# File lib/shopify-cli/method_object.rb, line 55 def call(*args, **kwargs, &block) Result.wrap { kwargs.any? ? super(*args, **kwargs, &block) : super(*args, &block) }.call end