diff --git a/i3pystatus/core/settings.py b/i3pystatus/core/settings.py index 4bc1d86..b2d6e3d 100644 --- a/i3pystatus/core/settings.py +++ b/i3pystatus/core/settings.py @@ -33,8 +33,10 @@ class SettingsBaseMeta(type): # required anymore. for base in inspect.getmro(cls): for r in list(required): - if hasattr(base, r) and getattr(base, r) != getattr(cls, r): + if hasattr(base, r) and getattr(base, r) != getattr(cls, r) \ + or hasattr(cls, r) and getattr(cls, r) is not None: required.remove(r) + return unique(settings), required