We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce61f50 commit 17b3bd3Copy full SHA for 17b3bd3
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