Exemplo n.º 1
0
def following_him(context, user, count):
    fans = get_my_followers(user, count)
    return {"following": fans, "request": context.get("request")}
def following_him(context, user, count):
    fans = get_my_followers(user, count)
    return {"following": fans, "request": context.get("request")}
def following_him(user, count=20):
    fans = get_my_followers(user, count)
    return {"following": fans}