Remove bad comments.

This commit is contained in:
Alex Root Junior 2017-06-02 03:03:26 +03:00
parent 07c7c1f32a
commit 5019a4f00b
3 changed files with 0 additions and 34 deletions

View file

@ -13,15 +13,6 @@ class User(Deserializable):
@classmethod
def de_json(cls, raw_data: str or dict) -> 'User':
"""
id Integer Unique identifier for this user or bot
first_name String Users or bots first name
last_name String Optional. Users or bots last name
username String Optional. Users or bots username
language_code String Optional. IETF language tag of the user's language
:param raw_data:
:return:
"""
raw_data = cls.check_json(raw_data)
id = raw_data.get('id')