Como converter a lista de tipos booleanos para inteiro

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