def remove_user_from_race(username, race_name):
    """Remove user from race. Return True if successful. Return False if user
    or race does not exist. Race is actually non important. It will simply be
    set to None."""
    player = Player.objects.get(user__username=username)