rename self.auth to headers
This commit is contained in:
parent
4c71d5ac42
commit
0821b28eac
1 changed files with 2 additions and 2 deletions
|
|
@ -27,11 +27,11 @@ class ZBDWallet(Wallet):
|
||||||
raise ValueError("cannot initialize ZBDWallet: missing zbd_api_key")
|
raise ValueError("cannot initialize ZBDWallet: missing zbd_api_key")
|
||||||
|
|
||||||
self.endpoint = self.normalize_endpoint(settings.zbd_api_endpoint)
|
self.endpoint = self.normalize_endpoint(settings.zbd_api_endpoint)
|
||||||
self.auth = {
|
headers = {
|
||||||
"apikey": settings.zbd_api_key,
|
"apikey": settings.zbd_api_key,
|
||||||
"User-Agent": settings.user_agent,
|
"User-Agent": settings.user_agent,
|
||||||
}
|
}
|
||||||
self.client = httpx.AsyncClient(base_url=self.endpoint, headers=self.auth)
|
self.client = httpx.AsyncClient(base_url=self.endpoint, headers=headers)
|
||||||
|
|
||||||
async def cleanup(self):
|
async def cleanup(self):
|
||||||
try:
|
try:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue