diff options
| author | Martin Bielik <mx.bielik@gmail.com> | 2024-03-09 13:14:51 +0100 |
|---|---|---|
| committer | Martin Bielik <mx.bielik@gmail.com> | 2024-03-09 13:14:51 +0100 |
| commit | b40801633352368ce42aea7d0e4ebd70af4732e7 (patch) | |
| tree | 5b6542d4f902044d5efd76a1f57711e3be1ebb6b /py | |
| parent | bb018930969076cd3cbd6f283eb851fc4e7d2985 (diff) | |
| download | vim-ai-b40801633352368ce42aea7d0e4ebd70af4732e7.tar.gz | |
removed config path log
Diffstat (limited to 'py')
| -rw-r--r-- | py/utils.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/py/utils.py b/py/utils.py index 1e2ae95..19de7c4 100644 --- a/py/utils.py +++ b/py/utils.py @@ -20,7 +20,6 @@ class KnownError(Exception): def load_api_key(): config_file_path = os.path.expanduser(vim.eval("g:vim_ai_token_file_path")) - print(config_file_path) api_key_param_value = os.getenv("OPENAI_API_KEY") try: with open(config_file_path, 'r') as file: |