Skip to content

Commit

Permalink
reformatted return statement
Browse files Browse the repository at this point in the history
  • Loading branch information
shubha-rajan committed Sep 21, 2019
1 parent abcd29c commit 6f2dd64
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bigquery/google/cloud/bigquery/magics.py
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,8 @@ def _cell_magic(line, query):
try:
query_job = _run_query(client, query, job_config=job_config)
except Exception as ex:
return _print_error(str(ex), args.destination_var)
_print_error(str(ex), args.destination_var)
return

if not args.verbose:
display.clear_output()
Expand Down

0 comments on commit 6f2dd64

Please sign in to comment.