Skip to content

Commit

Permalink
Remove dev token name in zenodo class
Browse files Browse the repository at this point in the history
  • Loading branch information
Gouderg committed Jan 15, 2025
1 parent 5037ddd commit bc561d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/zenodo_api/za_token.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ class ZenodoAPI:
def __init__(self, session_name: str, config_json: dict) -> None:
self.session_name = session_name
self.deposit_id = None
self.ACCESS_TOKEN = config_json["ACCESS_TOKEN_DEV_SEATIZEN"]
self.ZENODO_LINK = config_json["ZENODO_DEV_LINK"]
self.ACCESS_TOKEN = config_json["ACCESS_TOKEN"]
self.ZENODO_LINK = config_json["ZENODO_LINK"]

self.params = {'access_token': self.ACCESS_TOKEN}
self.headers = {"Content-Type": "application/json"}
Expand Down

0 comments on commit bc561d4

Please sign in to comment.