We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14e3a3d commit 6006c1bCopy full SHA for 6006c1b
src/maison/parsers/toml.py
@@ -39,7 +39,7 @@ def parse_config(self, file: typing.BinaryIO) -> typedefs.ConfigValues:
39
"""See the Parser.parse_config method."""
40
try:
41
values = dict(tomllib.load(file))
42
- except (FileNotFoundError, tomllib.TOMLDecodeError):
+ except tomllib.TOMLDecodeError:
43
return {}
44
45
current = values
0 commit comments