Skip to content

Commit

Permalink
remove duplication
Browse files Browse the repository at this point in the history
  • Loading branch information
NodeJSmith committed Jan 10, 2025
1 parent d464ebb commit ab1570e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/otf_api/auth/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
BOTO_CONFIG = Config(region_name=REGION, signature_version=UNSIGNED)
CRED_CACHE = CacheableData("creds", Path("~/.otf-api"))

DEVICE_KEYS = ["device_key", "device_group_key", "device_password"]
DEVICE_KEYS_NO_PWD = ["device_key", "device_group_key"]
DEVICE_KEYS = [*DEVICE_KEYS_NO_PWD, "device_password"]
TOKEN_KEYS = ["access_token", "id_token", "refresh_token"]


Expand Down

0 comments on commit ab1570e

Please sign in to comment.