Remove default value for token param

This commit is contained in:
simon987 2019-03-10 10:38:54 -04:00
parent ea2f9694d5
commit 35f86961f0

2
api.py
View File

@ -13,7 +13,7 @@ API_TIMEOUT = 10
class WsBucketApi:
def __init__(self, url: str, secret: str = None):
def __init__(self, url: str, secret: str):
self._url = url
self._secret = secret.encode("utf8")