lint fixes

This commit is contained in:
Leandro Toledo 2015-07-08 23:38:07 -03:00
parent 469213ba9d
commit 29c1f7e027
2 changed files with 7 additions and 2 deletions

View file

@ -1,4 +1,5 @@
#!/usr/bin/env python
# flake8: noqa
class Emoji(object):

View file

@ -19,8 +19,12 @@ class ReplyKeyboardMarkup(ReplyMarkup):
@staticmethod
def de_json(data):
return ReplyKeyboardMarkup(keyboard=data.get('keyboard', None),
resize_keyboard=data.get('resize_keyboard', None),
one_time_keyboard=data.get('one_time_keyboard', None),
resize_keyboard=data.get(
'resize_keyboard', None
),
one_time_keyboard=data.get(
'one_time_keyboard', None
),
selective=data.get('selective', None))
def to_json(self):