Cómo deshacerse de todos los valores nulos en Array Python

mylist = [1, 2, 3, '', 4]
mylist = [i for i in mylist if i != '']
Hurt Herring