Skip to content

Commit 4db8f91

Browse files
committedMar 9, 2025·
Make Google Authenticator write per-service tokens
1 parent f92a85e commit 4db8f91

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎fmtr/tools/google_api_tools.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def auth(cls):
2323
logger.info(msg)
2424

2525
PATH_CREDS = cls.PATH / 'credentials.json'
26-
PATH_TOKEN = cls.PATH / 'token.json'
26+
PATH_TOKEN = cls.PATH / f'{cls.SERVICE}.json'
2727

2828
if PATH_TOKEN.exists():
2929
data_token = PATH_TOKEN.read_json()

‎fmtr/tools/version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.18
1+
1.0.19

0 commit comments

Comments
 (0)
Please sign in to comment.