Skip to content

Commit

Permalink
Merge pull request #28 from zYxDevs/autofix
Browse files Browse the repository at this point in the history
Format code.
  • Loading branch information
zYxDevs authored Oct 23, 2023
2 parents ea711fd + 445dbaa commit 66ff911
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 66ff911

Please sign in to comment.