From 110be516c70c645babd841a00f6f2c7077c559a5 Mon Sep 17 00:00:00 2001 From: nberr Date: Mon, 26 Feb 2024 18:17:22 -0700 Subject: [PATCH] changed path in script --- basic.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/basic.py b/basic.py index 3a025d2..8f2bcda 100644 --- a/basic.py +++ b/basic.py @@ -19,9 +19,8 @@ credentials = None -home_folder = os.path.expanduser('~') -pickle_path = os.path.join(home_folder, 'token.pickle') -cred_path = os.path.join(home_folder, 'credentials.json') +pickle_path = 'token.pickle' +cred_path = 'credentials.json' # check if credentials already exist if os.path.exists(pickle_path):