Skip to content

Commit

Permalink
Update docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
q0w authored Apr 8, 2024
1 parent e2fe333 commit 85a0168
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/interrogate/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def parse_pyproject_toml(path_config):
:return: Dictionary representing configuration for Interrogate.
:rtype: dict
:raise OSError: an I/O-related error when opening ``pyproject.toml``.
:raise toml.TOMLDecodeError: unable to load ``pyproject.toml``.
:raise tomllib.TOMLDecodeError: unable to load ``pyproject.toml``.
"""
with open(path_config, "rb") as f:
pyproject_toml = tomllib.load(f)
Expand Down

0 comments on commit 85a0168

Please sign in to comment.