Skip to content

Commit

Permalink
remove 'oauth2client.locked_file' by disabling the cache
Browse files Browse the repository at this point in the history
  • Loading branch information
leo-schick committed Sep 15, 2020
1 parent d87a714 commit 04afe84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mara_google_analytics_downloader/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def ga_download_to_csv(view_id: int,
while True:
try:
# Builds the google analytics service object
analytics = build('analyticsreporting', 'v4', credentials=credentials)
analytics = build('analyticsreporting', 'v4', credentials=credentials, cache_discovery=False)

request_metrics = list(map(
lambda metric_name: {'expression': metric_name},
Expand Down

0 comments on commit 04afe84

Please sign in to comment.