From 9076b303252b89b81ab9f8ad73d1f656e7fbcf94 Mon Sep 17 00:00:00 2001 From: Tobias Witek Date: Sun, 15 Mar 2020 14:02:48 +0100 Subject: [PATCH] [core/output] Make tests pass again Using an empty configuration vs. no configuration at all to make tests run again. --- core/output.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/output.py b/core/output.py index 874ce9c..acaff2e 100644 --- a/core/output.py +++ b/core/output.py @@ -6,7 +6,7 @@ import core.theme import core.event class i3(object): - def __init__(self, theme=core.theme.Theme(), config=None): + def __init__(self, theme=core.theme.Theme(), config=core.config.Config([])): self._modules = [] self._status = {} self._theme = theme