Skip to content

Commit

Permalink
Fix NameError in visualizing calibration metrics tutorial (#4316)
Browse files Browse the repository at this point in the history
`cirq_google` is used to get calibrations in line 181 but never imported, leading to `NameError: name cirq_google is not defined` (189945709).
  • Loading branch information
rmlarose committed Jul 14, 2021
1 parent d624a55 commit d9e1f93
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/tutorials/google/visualizing_calibration_metrics.ipynb
Expand Up @@ -80,7 +80,8 @@
" print(\"installing cirq...\")\n",
" !pip install --quiet cirq\n",
" print(\"installed cirq.\")\n",
" import cirq\n",
"import cirq\n",
"import cirq_google\n",
"import os\n",
"import matplotlib.pyplot as plt"
]
Expand Down

0 comments on commit d9e1f93

Please sign in to comment.