aboutsummaryrefslogtreecommitdiff
path: root/minishell_test/config.py
diff options
context:
space:
mode:
Diffstat (limited to 'minishell_test/config.py')
-rw-r--r--minishell_test/config.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/minishell_test/config.py b/minishell_test/config.py
index 1368740..2cc96b7 100644
--- a/minishell_test/config.py
+++ b/minishell_test/config.py
@@ -6,7 +6,7 @@
# By: cacharle <me@cacharle.xyz> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2021/02/26 09:40:36 by cacharle #+# #+# #
-# Updated: 2021/02/27 16:11:46 by cacharle ### ########.fr #
+# Updated: 2021/02/27 16:16:07 by cacharle ### ########.fr #
# #
# ############################################################################ #
@@ -29,7 +29,7 @@ class ConfigParser(configparser.ConfigParser):
BOOLEAN_STATES = {'true': True, 'false': False}
def __init__(self):
- super().__init__(self)
+ super().__init__()
def getpath(self, section, options):
return Path(self.get(section, options)).resolve()