Fix mypy errors.

This commit is contained in:
Robert Hönig 2018-01-04 17:19:02 +01:00
parent eb02e08fb7
commit f4ee3d4009
3 changed files with 3 additions and 3 deletions

View file

@ -23,7 +23,7 @@ class BaremetricsHandler(object):
self.check_api_key(bot_handler) self.check_api_key(bot_handler)
def check_api_key(self, bot_handler) -> None: def check_api_key(self, bot_handler: Any) -> None:
url = "https://api.baremetrics.com/v1/account" url = "https://api.baremetrics.com/v1/account"
test_query_response = requests.get(url, headers=self.auth_header) test_query_response = requests.get(url, headers=self.auth_header)
test_query_data = test_query_response.json() test_query_data = test_query_response.json()

View file

@ -19,7 +19,7 @@ class LinkShortenerHandler(object):
self.config_info = bot_handler.get_config_info('link_shortener') self.config_info = bot_handler.get_config_info('link_shortener')
self.check_api_key(bot_handler) self.check_api_key(bot_handler)
def check_api_key(self, bot_handler) -> None: def check_api_key(self, bot_handler: Any) -> None:
test_request = requests.post( test_request = requests.post(
'https://www.googleapis.com/urlshortener/v1/url', 'https://www.googleapis.com/urlshortener/v1/url',
json={'longUrl': 'www.youtube.com/watch'}, json={'longUrl': 'www.youtube.com/watch'},

View file

@ -12,7 +12,7 @@ class MentionHandler(object):
self.check_access_token(bot_handler) self.check_access_token(bot_handler)
def check_access_token(self, bot_handler) -> None: def check_access_token(self, bot_handler: Any) -> None:
test_query_header = { test_query_header = {
'Authorization': 'Bearer ' + self.access_token, 'Authorization': 'Bearer ' + self.access_token,
'Accept-Version': '1.15', 'Accept-Version': '1.15',