Cómo convertir la lista de tipos booleanos en entero

num = [True, False, False]
int_num = list(map(int, num))
print(int_num)
Excited Earthworm