def format(result) | |
# The data I want is deeply nested in the "result" hash | |
results = result.first[1]["coverage"] | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
def format(result) | |
# The data I want is deeply nested in the "result" hash | |
results = result.first[1]["coverage"] | |
end |
This comment has been minimized.
OR
result.first[1]["coverage"] rescue nil