(locals)
| 66 | |
| 67 | |
| 68 | def _invoke_default_shell(locals): |
| 69 | try: |
| 70 | import IPython # noqa |
| 71 | except ImportError: |
| 72 | try: |
| 73 | import bpython # noqa |
| 74 | except ImportError: |
| 75 | _invoke_fallback_shell(locals) |
| 76 | else: |
| 77 | _invoke_bpython_shell(locals) |
| 78 | else: |
| 79 | _invoke_ipython_shell(locals) |
| 80 | |
| 81 | |
| 82 | @click.command(cls=CeleryCommand, context_settings={ |
no test coverage detected
searching dependent graphs…