diff --git a/examples/example_notebooks/diagnoser.ipynb b/examples/example_notebooks/diagnoser.ipynb index a1fdfcd..00f7a19 100644 --- a/examples/example_notebooks/diagnoser.ipynb +++ b/examples/example_notebooks/diagnoser.ipynb @@ -591,7 +591,8 @@ } ], "source": [ - "automatable_changes = [c for c in changes if c.can_automate()]\n", + "automatable_changes = []\n", + "# automatable_changes = [c for c in changes if c.can_automate()]\n", "print('\\n'.join([c.describe() for c in automatable_changes]))" ] },