Commit 988a2339 by Sébastien Eustace

Fix missing parenthesis

parent fd78fd53
...@@ -10,7 +10,7 @@ class Config: ...@@ -10,7 +10,7 @@ class Config:
def __init__(self, file: TomlFile): def __init__(self, file: TomlFile):
self._file = file self._file = file
if not self._file.exists: if not self._file.exists():
self._raw_content = {} self._raw_content = {}
self._content = TOMLFile([]) self._content = TOMLFile([])
else: else:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment