Skip to content

Commit

Permalink
Automated code formatting
Browse files Browse the repository at this point in the history
Signed-off-by: zYxDevs <[email protected]>
  • Loading branch information
zYxDevs authored and zYxDevs committed Oct 23, 2023
1 parent ea711fd commit 445dbaa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion wibuapi/wibuapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@

from requests import get


class WibuAPI:
def __init__(self, apikey=None):
self.base_url = "https://wibu-api.eu.org"
self.deprecated_url = "https://api.wibu-api.eu.org"
self.headers = {"x-wibu-key": apikey}
self.headers = {"x-wibu-key": apikey}

# Anime, Donghua, Hentai
def lendrive(self, link: str):
Expand Down
2 changes: 1 addition & 1 deletion wibuapi/wibuapi_async.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class AsyncWibuAPI:
def __init__(self, apikey=None):
self.base_url = "https://wibu-api.eu.org"
self.deprecated_url = "https://api.wibu-api.eu.org"
self.headers = {"x-wibu-key": apikey}
self.headers = {"x-wibu-key": apikey}

# Anime, Donghua, Hentai
async def lendrive(self, link: str):
Expand Down

0 comments on commit 445dbaa

Please sign in to comment.