Skip to content

Commit

Permalink
Change url
Browse files Browse the repository at this point in the history
  • Loading branch information
umbresp committed Nov 19, 2018
1 parent c32e4ba commit 8a30c38
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion brawlstars/asyncclient.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def __init__(self, token, timeout=5):
session: An aiohttp.ClientSession object that represents the session.
timeout: The timeout to wait before cancelling a request.
"""
self._base_url = 'https://brawlstars-api.herokuapp.com/api/'
self._base_url = 'https://brawlapi.cf/api'
self.session = aiohttp.ClientSession()
self.timeout = timeout
self.headers = {
Expand Down
2 changes: 1 addition & 1 deletion brawlstars/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def __init__(self, token, timeout=5):
session: A requests.Session() object that represents the session.
timeout: The timeout to wait before cancelling a request.
"""
self._base_url = 'http://brawlstars-api.herokuapp.com/api/'
self._base_url = 'https://brawlapi.cf/api'
self.timeout = timeout
self.session = requests.Session()
self.headers = {
Expand Down

0 comments on commit 8a30c38

Please sign in to comment.