Skip to content
This repository was archived by the owner on Sep 12, 2024. It is now read-only.

Commit 3ec94ec

Browse files
committed
Minor
1 parent 00ee256 commit 3ec94ec

2 files changed

Lines changed: 7 additions & 5 deletions

File tree

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![License](https://img.shields.io/github/license/textcortex/icortex.svg?color=blue)](https://github.com/textcortex/icortex/blob/main/LICENSE)
55
[![](https://dcbadge.vercel.app/api/server/QtfGgKneHX?style=flat)](https://discord.textcortex.com/)
66

7-
ICortex is a [Jupyter kernel](https://jupyter-client.readthedocs.io/en/latest/kernels.html) that supercharges your Jupyter Notebook workflow by letting you generate **generate Python code automatically from natural language prompts**.
7+
ICortex is a [Jupyter kernel](https://jupyter-client.readthedocs.io/en/latest/kernels.html) that supercharges your Jupyter Notebook workflow by letting you generate Python code automatically from natural language prompts.
88

99
It is ...
1010

@@ -89,6 +89,10 @@ You can also specify options with command line flags, e.g. to auto-install packa
8989
/help
9090
```
9191

92+
## Getting help
93+
94+
To get support, join our [Discord](https://discord.textcortex.com/).
95+
9296
## Uninstalling
9397

9498
To uninstall, run

icortex/exec.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,6 @@ def run_dialog(
3535
if not quiet:
3636
print(highlight_python(code))
3737

38-
# Missing modules are modules that are still missing regardless of
39-
# whether the user tried to auto-install them or not
4038
missing_modules = get_missing_modules(code)
4139

4240
if len(missing_modules) > 0 and not auto_install_packages and not nonint:
@@ -57,8 +55,8 @@ def run_dialog(
5755
)
5856
return ""
5957

60-
# Missing modules are modules that are still missing regardless of
61-
# whether the user tried to auto-install them or not
58+
# Modules that are still missing regardless of
59+
# whether the user tried to auto-install them or not:
6260
still_missing_modules = get_missing_modules(code)
6361

6462
if not execute and not nonint and len(still_missing_modules) == 0:

0 commit comments

Comments
 (0)