beeminder: Remove duplicated try-except in initialize method.

Remove duplicated try-except in `initialize` method because
ConnectionError is already catched in `get_beeminder_response` method.
This commit is contained in:
novokrest 2018-06-02 11:58:28 +03:00
parent f3d2d3a01e
commit dc83d9e468

View file

@ -83,13 +83,9 @@ class BeeminderHandler(object):
def initialize(self, bot_handler: Any) -> None:
self.config_info = bot_handler.get_config_info('beeminder')
# Check for valid auth_token
try:
result = get_beeminder_response('5', self.config_info)
if result == "Error. Check your key!":
bot_handler.quit('Invalid key!')
except ConnectionError:
logging.warning('Bad connection')
raise
def usage(self) -> str:
return "This plugin allows users to add datapoints towards their Beeminder goals"