From e0400fbe37842acfe111959ca4682ad5991cc3b6 Mon Sep 17 00:00:00 2001 From: Francisco Acosta Date: Thu, 25 Apr 2024 12:00:23 -0700 Subject: [PATCH] update wandb api key path --- neurometry/curvature/default_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neurometry/curvature/default_config.py b/neurometry/curvature/default_config.py index d9b91e1..b76ed6c 100644 --- a/neurometry/curvature/default_config.py +++ b/neurometry/curvature/default_config.py @@ -11,7 +11,7 @@ # WANDB API KEY # Find it here: https://wandb.ai/authorize # Story it in file: api_key.txt (without extra line break) -api_key_path = os.path.join(os.getcwd(), "curvature","api_key.txt") +api_key_path = os.path.join(os.getcwd(),"api_key.txt") with open(api_key_path) as f: api_key = f.read()