def remove_falsey_values(l):
          l[:] = (x for x in l if x)