From bbc56dd3e429084b1f4bd52babe229781e9479dd Mon Sep 17 00:00:00 2001 From: vincent Date: Sun, 30 May 2021 11:05:44 +0200 Subject: [PATCH] correct config super call --- ITPlanning/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ITPlanning/config.py b/ITPlanning/config.py index ad782ae..286b03d 100644 --- a/ITPlanning/config.py +++ b/ITPlanning/config.py @@ -36,7 +36,7 @@ class IniConfig(DefaultConfig): ] def __init__(self, paths=None): - super() + super().__init__() if not paths: paths = self.common_paths parser = RawConfigParser()