From 6c73f37fc324e082b09e50053fbf6fccebee1ef5 Mon Sep 17 00:00:00 2001 From: Cullen Watson Date: Mon, 28 Aug 2023 11:44:10 -0500 Subject: [PATCH] change dir on docker --- api/core/formatters/csv/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/core/formatters/csv/__init__.py b/api/core/formatters/csv/__init__.py index d7a7f1e..497efe1 100644 --- a/api/core/formatters/csv/__init__.py +++ b/api/core/formatters/csv/__init__.py @@ -20,7 +20,7 @@ def upload_to_google_sheet(csv_data: str): "https://www.googleapis.com/auth/drive", ] credentials = ServiceAccountCredentials.from_json_keyfile_name( - "/app/client_secret.json", scope + "client_secret.json", scope ) gc = gspread.authorize(credentials) sh = gc.open(GSHEET_NAME)