summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Bielik <mx.bielik@gmail.com>2024-03-09 13:14:51 +0100
committerMartin Bielik <mx.bielik@gmail.com>2024-03-09 13:14:51 +0100
commitb40801633352368ce42aea7d0e4ebd70af4732e7 (patch)
tree5b6542d4f902044d5efd76a1f57711e3be1ebb6b
parentbb018930969076cd3cbd6f283eb851fc4e7d2985 (diff)
downloadvim-ai-b40801633352368ce42aea7d0e4ebd70af4732e7.tar.gz
removed config path log
Diffstat (limited to '')
-rw-r--r--py/utils.py1
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: