From b6e2efdbdb6f8d0c7d6d60990860297a22c8b446 Mon Sep 17 00:00:00 2001 From: Kara Moraw Date: Fri, 5 Jul 2024 16:41:24 +0100 Subject: [PATCH] update config location --- src/github/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/github/utils.py b/src/github/utils.py index 05bedf9..a81f85d 100644 --- a/src/github/utils.py +++ b/src/github/utils.py @@ -64,7 +64,7 @@ def get_access_token(): str: access token """ config = configparser.ConfigParser() - config.read('../config.cfg') + config.read('../../config.cfg') return config['ACCESS']['token'] def collect(g, df, name, func, drop_names, path):