Commit 988a2339 by Sébastien Eustace

Fix missing parenthesis

parent fd78fd53
......@@ -10,7 +10,7 @@ class Config:
def __init__(self, file: TomlFile):
self._file = file
if not self._file.exists:
if not self._file.exists():
self._raw_content = {}
self._content = TOMLFile([])
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