diff --git a/qutebrowser/config/configtypes.py b/qutebrowser/config/configtypes.py index 5d024d486..199b863a0 100644 --- a/qutebrowser/config/configtypes.py +++ b/qutebrowser/config/configtypes.py @@ -963,8 +963,6 @@ class WebKitBytesList(List): vals = super().transform(value) for val in vals: self.bytestype.validate(val) - if None in vals and not self.none_ok: - raise configexc.ValidationError(value, "items may not be empty!") if self.length is not None and len(vals) != self.length: raise configexc.ValidationError(value, "exactly {} values need to " "be set!".format(self.length))