async def info(event, session): """Send a the information about the current user settings.""" to_id, to_type = get_peer_information(event.message.to_id) subscriber = Subscriber.get_or_create(session, to_id, to_type, event.message) return get_info_text(subscriber)
async def info(event, session): """Send a help text.""" to_id, to_type = get_peer_information(event.message.to_id) subscriber = Subscriber.get_or_create(session, to_id, to_type, event.message) return get_info_text(subscriber)