From ecb22118b0b464dc1531d98a3d3043c75b3233d7 Mon Sep 17 00:00:00 2001 From: jsh9 <25124332+jsh9@users.noreply.github.com> Date: Sat, 30 Nov 2024 23:20:16 -0500 Subject: [PATCH] Auto format --- pydoclint/parse_config.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pydoclint/parse_config.py b/pydoclint/parse_config.py index def6090..35b9da9 100644 --- a/pydoclint/parse_config.py +++ b/pydoclint/parse_config.py @@ -50,7 +50,9 @@ def parseToml(paths: Optional[Sequence[str]]) -> Dict[str, Any]: commonParent: Path = findCommonParentFolder(paths) tomlFilename = commonParent / Path('pyproject.toml') - logging.info(f'Loading config from inferred .toml file path: {tomlFilename}') + logging.info( + f'Loading config from inferred .toml file path: {tomlFilename}' + ) return parseOneTomlFile(tomlFilename)