Skip to content

Instantly share code, notes, and snippets.

View alihossein's full-sized avatar
🎯
Focusing

Alihossein Shahabi alihossein

🎯
Focusing
View GitHub Profile
``` python
def convert_channel_id_to_peer_id(channel_id):
"""
:param channel_id:
:return:
"""
if channel_id is None or channel_id == 'Null':
return channel_id
else:
return 8589934592 | int(channel_id)